Skip to content
On this page

stratadb / EqualityOperators

Type Alias: EqualityOperators<T>

ts
type EqualityOperators<T> = object;

Defined in: src/query-types.ts:86

Equality comparison operators.

Remarks

These operators work with all data types and provide basic equality/inequality checks.

Type Parameters

T

T

The field type

Properties

$eq?

ts
readonly optional $eq: T;

Defined in: src/query-types.ts:88

Equal to the specified value


$ne?

ts
readonly optional $ne: T;

Defined in: src/query-types.ts:91

Not equal to the specified value

Released under the MIT License.