gte
gte(
key,value):Predicate
Defined in: src/query/predicate.ts:97
Creates a greater than or equal predicate
Parameters
Section titled “Parameters”string
The key to compare
The value to compare
string | number
Returns
Section titled “Returns”The greater than or equal predicate
Example
Section titled “Example”const predicate = gte("name", "John")// result = { type: "gte", key: "name", value: "John" }