Skip to main content
Module

x/kysely_deno_postgres_dialect/mod.ts>kysely.OPERATORS

Kysely dialect for PostgreSQL using the deno-postgres client.
Go to Latest
variable kysely.OPERATORS
import { kysely } from "https://deno.land/x/kysely_deno_postgres_dialect@v0.27.0/mod.ts";
const { OPERATORS } = kysely;

type

readonly
[
"=",
"==",
"!=",
"<>",
">",
">=",
"<",
"<=",
"in",
"not in",
"is",
"is not",
"like",
"not like",
"match",
"ilike",
"not ilike",
"@>",
"<@",
"&&",
"?",
"?&",
"!<",
"!>",
"<=>",
"!~",
"~",
"~*",
"!~*",
"@@",
"@@@",
"!!",
"<->",
"regexp",
"is distinct from",
"is not distinct from",
"+",
"-",
"*",
"/",
"%",
"^",
"&",
"|",
"#",
"<<",
">>",
"&&",
"||",
"->",
"->>",
"not",
"-",
"exists",
"not exists",
"between",
"between symmetric",
]