Optional $and?: TableFilter<Schema>[]Optional $not?: TableFilter<Schema>Optional $or?: TableFilter<Schema>[]interface BasicSchema {
arr: string[],
num: number,
}
db.Tables<BasicSchema>('coll_name').findOne({
$and: [
{ _id: { $in: ['abc', 'def'] } },
{ $not: { arr: { $size: 0 } } },
]
});
Represents some filter operation for a given document schema.