Skip to main content
Using Deno in production at your company? Earn free Deno merch.
Give us feedback
Module

x/justaos_orm/src/core/types.ts>WHERE_CLAUSE_OPERATORS_CONFIG

JUSTAOS's ORM (Object–relational mapping) tool is built for Deno and provides transparent persistence for JavaScript objects to Postgres database.
Latest
variable WHERE_CLAUSE_OPERATORS_CONFIG
import { WHERE_CLAUSE_OPERATORS_CONFIG } from "https://deno.land/x/justaos_orm@v10.0.0/src/core/types.ts";

type

{ EQUAL: { type: string; description: string; }; NOT_EQUAL: { type: string; description: string; }; GREATER_THAN: { type: string; description: string; }; LESS_THAN: { type: string; description: string; }; GREATER_THAN_OR_EQUAL: { type: string; description: string; }; LESS_THAN_OR_EQUAL: { type: string; description: string; }; NOT_EQUAL2: { type: string; description: string; }; LIKE: { type: string; description: string; }; ILIKE: { type: string; description: string; }; BETWEEN: { type: string; description: string; }; NOT_BETWEEN: { type: string; description: string; }; IN: { type: string; description: string; arrayValues: boolean; }; NOT_IN: { type: string; description: string; arrayValues: boolean; }; IS_NULL: { type: string; description: string; noValue: boolean; }; IS_NOT_NULL: { type: string; description: string; noValue: boolean; }; IS_TRUE: { type: string; description: string; noValue: boolean; }; IS_NOT_TRUE: { type: string; description: string; noValue: boolean; }; IS_FALSE: { type: string; description: string; noValue: boolean; }; IS_NOT_FALSE: { type: string; description: string; noValue: boolean; }; IS_UNKNOWN: { type: string; description: string; noValue: boolean; }; IS_NOT_UNKNOWN: { type: string; description: string; noValue: boolean; }; }