import * as aloedb from "https://deno.land/x/aloedb@0.9.0/lib/helpers.ts";
Functions
f and | Logical AND operator. Selects documents where the value of a field equals to all specified values. |
Matches if number is between specified range values. | |
Matches if number is between or equal to the specified range values. | |
Matches if all the values in the array match in the given queries. | |
Matches if field exists. | |
Matches if array includes specified value. | |
Matches if array length equal to specified length. | |
Selects documents where the value of a field less than specified number. | |
Selects documents where the value of a field less than or equal to the specified number. | |
Selects documents where the value of a field more than specified number. | |
Selects documents where the value of a field more than or equal to the specified number. | |
f not | Logical NOT operator. Selects documents where the value of a field not equal to specified value. |
f or | Logical OR operator. Selects documents where the value of a field equals at least one specified value. |
Matches if at least one value in the array matches the given queries. | |
f type | Matches if value type equal to specified type. |