refering different tables that are not directly FK
This commit is contained in:
Binary file not shown.
@@ -29,6 +29,12 @@ pub struct PostTableScriptRequest {
|
||||
/// • current-table references are read directly from the active row
|
||||
/// • other tables require an explicit link from the source table
|
||||
/// (table_definition_links) or the request fails
|
||||
/// * Related collections use allowlisted aggregate shorthand:
|
||||
/// @sum(table.column), @min(table.column), @max(table.column),
|
||||
/// @count(table.column), @count_distinct(table.column),
|
||||
/// @any(table.boolean), @all(table.boolean),
|
||||
/// @count_rows(table), @exists(table)
|
||||
/// The related table must be a direct child or share exactly one parent.
|
||||
/// * Raw SQL access is not supported; steel_query_sql is rejected
|
||||
///
|
||||
/// Math operations:
|
||||
@@ -107,6 +113,11 @@ pub struct ScriptDependency {
|
||||
/// Deprecated legacy field. Raw SQL dependencies are no longer produced.
|
||||
#[prost(string, tag = "4")]
|
||||
pub query_fragment: ::prost::alloc::string::String,
|
||||
#[prost(string, tag = "5")]
|
||||
pub operation: ::prost::alloc::string::String,
|
||||
/// Relationship table used to match the owner row to the related collection.
|
||||
#[prost(string, tag = "6")]
|
||||
pub via_table: ::prost::alloc::string::String,
|
||||
}
|
||||
/// Generated client implementations.
|
||||
pub mod table_script_client {
|
||||
|
||||
Reference in New Issue
Block a user