Skip to main content
Module

x/aloedb/lib/operators.ts

Light, Embeddable, NoSQL database for Deno 🦕
Go to Latest
import * as aloedb from "https://deno.land/x/aloedb@0.1.0/lib/operators.ts";

Functions

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 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.

Logical NOT operator. Selects documents where the value of a field not equal to specified value.

Logical OR operator. Selects documents where the value of a field equals at least one specified value.

Matches if value type equal to specified type.