You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fix(runtime): use single-string logger.error in auto-connect catch (DTS build)
The context logger interface types error(message, error?: Error) — passing a meta
object {appId, error} tripped the tsup DTS build (TS2353) even though tsc --noEmit
passed. Switch to a single interpolated message; the rethrow still surfaces the
real cause to the kernel.
Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
Copy file name to clipboardExpand all lines: content/docs/references/api/contract.mdx
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -154,7 +154,7 @@ const result = ApiError.parse(data);
154
154
|**having**|`[__schema2](./__schema2)`| optional | HAVING clause for aggregation filtering |
155
155
|**windowFunctions**|`Object[]`| optional | Window functions with OVER clause |
156
156
|**distinct**|`boolean`| optional | SELECT DISTINCT flag |
157
-
|**expand**|`Record<string, [__schema0](./__schema0)>`| optional | Recursive relation loading map. Keys are lookup/master_detail field names; values are nested QueryAST objects that control select, filter, sort, and further expansion on the related object. The engine resolves expand via batch $in queries (driver-agnostic) with a default max depth of 3. |
157
+
|**expand**|`Record<string, [__schema0](./__schema0)>`| optional | Recursive relation loading map. Keys are lookup/master_detail field names; values are nested QueryAST objects that control select (`fields`) and filter (`where`, AND-merged with the batch $in), plus further expansion on the related object. The engine resolves expand via batch $in queries (driver-agnostic) with a default max depth of 3; per-parent `limit`/`offset`/`orderBy` are NOT applied on this path. |
Copy file name to clipboardExpand all lines: content/docs/references/data/query.mdx
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -202,7 +202,7 @@ Type: `string`
202
202
|**having**|`[__schema1](./__schema1)`| optional | HAVING clause for aggregation filtering |
203
203
|**windowFunctions**|`Object[]`| optional | Window functions with OVER clause |
204
204
|**distinct**|`boolean`| optional | SELECT DISTINCT flag |
205
-
|**expand**|`Record<string, [#](./#)>`| optional | Recursive relation loading map. Keys are lookup/master_detail field names; values are nested QueryAST objects that control select, filter, sort, and further expansion on the related object. The engine resolves expand via batch $in queries (driver-agnostic) with a default max depth of 3. |
205
+
|**expand**|`Record<string, [#](./#)>`| optional | Recursive relation loading map. Keys are lookup/master_detail field names; values are nested QueryAST objects that control select (`fields`) and filter (`where`, AND-merged with the batch $in), plus further expansion on the related object. The engine resolves expand via batch $in queries (driver-agnostic) with a default max depth of 3; per-parent `limit`/`offset`/`orderBy` are NOT applied on this path. |
0 commit comments