Filter type
Home > @cbnsndwch/zero-contracts > Filter
Filter type
A MongoDB-like filter can be some portion of the table-collection schema or a set of operators
Signature:
type Filter<T> = RootFilterOperators<T> & {
[K in keyof T]?: Condition<T[K]>;
};References: RootFilterOperators, Condition
How was this page?