Interface RootQuerySelector<T>

interface RootQuerySelector<T> {
    $and?: FilterQuery<T>[];
    $or?: FilterQuery<T>[];
    [key: string]: any;
}

Type Parameters

  • T

Indexable

[key: string]: any

Properties

Properties

$and?: FilterQuery<T>[]
$or?: FilterQuery<T>[]