refering different tables that are not directly FK

This commit is contained in:
Priec
2026-07-16 18:41:26 +02:00
parent c0b9cfda9f
commit b765a3684c
5 changed files with 22 additions and 2 deletions

2
client

Submodule client updated: 643795ac6f...6da324a924

View File

@@ -70,6 +70,12 @@ message 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:
@@ -130,4 +136,7 @@ message ScriptDependency {
string column = 3;
// Deprecated legacy field. Raw SQL dependencies are no longer produced.
string query_fragment = 4;
string operation = 5;
// Relationship table used to match the owner row to the related collection.
string via_table = 6;
}

Binary file not shown.

View File

@@ -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 {

2
server

Submodule server updated: 37f329a2b2...1bbb78b494