Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions content/docs/kernel/contracts/data-engine.mdx
Original file line numberDiff line numberDiff line change
Expand Up@@ -113,6 +113,10 @@ interface EngineQueryOptions {
search?: string | FullTextSearch; // Full-text search — the bare query text
// is canonical (ADR-0061 D1); the object
// form carries the Tier-2 knobs (#7178)
searchFields?: string[]; // Fields the `search` expansion may match
// against — a validated override, intersected
// with the object's declared/derived
// searchable set (ADR-0061 D1)
expand?: Record<string, QueryAST>; // Recursive relation loading
context?: ExecutionContext; // Identity, tenant, transaction — any subset
}
Expand Down
Loading