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
Copy file name to clipboardExpand all lines: src/engine/query.ts
+3-2Lines changed: 3 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -8,6 +8,7 @@ export type AbstractQueryValueElement =
8
8
|boolean
9
9
|Date
10
10
|bigint
11
+
|null
11
12
12
13
exporttypeAbstractQuery=Record<
13
14
string,
@@ -54,7 +55,7 @@ export type AbstractQueryOptions = {
54
55
/**
55
56
* How the abstract query is converted to an actual query.
56
57
*
57
-
* @default Each value that is not undefined is converted to a string by calling `.toString()`.
58
+
* @default Each value that is not undefined and is converted to a string. `null` is converted to an empty string, while other values are converted calling `String(value)`.
0 commit comments