This commit is contained in:
2026-01-05 14:11:17 +01:00
parent 58984214fc
commit 9402c859f7
5 changed files with 23 additions and 5 deletions
+5
View File
@@ -1108,6 +1108,11 @@ export type ServerQueryObject<
operator?: (typeof ServerQueryOperators)[number];
equality?: (typeof ServerQueryEqualities)[number];
tableName?: K;
/**
* This will replace the top level field name if
* provided
*/
fieldName?: string;
__query?: {
[key in keyof T]: Omit<ServerQueryObject<T>, "__query">;
};