Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

WhereFilterOp

Filter conditions in a where clause are specified using the strings '<', '<=', '==', '!=', '>=', '>', 'array-contains', 'in', 'array-contains-any', and 'not-in'.

type WhereFilterOp =
| "<"
| "<="
| "=="
| "!="
| ">="
| ">"
| "array-contains"
| "in"
| "array-contains-any"
| "not-in";

§Type

§
"<" | "<=" | "==" | "!=" | ">=" | ">" | "array-contains" | "in" | "array-contains-any" | "not-in"
[src]