Type alias RootQuerySelector<T>

RootQuerySelector<T>: {
    $and?: FilterQuery<T>[];
    $comment?: string;
    $nor?: FilterQuery<T>[];
    $or?: FilterQuery<T>[];
    $text?: {
        $caseSensitive?: boolean;
        $diacraticSensitive?: boolean;
        $language?: string;
        $search: string;
    };
    $where?: string | Function;
    [key: string]: UUID | MongoId | any;
}

Type Parameters

  • T

Type declaration

Generated using TypeDoc