Skip to content

Commit c3538e9

Browse files
committed
fix(filter): added filter to comparisonFilters
1 parent 1863e3d commit c3538e9

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

dist/interfaces/filter.d.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ export interface ComparisonFilter<Value> {
88
readonly $lte?: Value;
99
readonly $ne?: Value;
1010
readonly $nin?: Value[];
11+
readonly $not?: ComparisonFilter<Value>;
1112
readonly $search?: Value;
1213
}
1314
export declare type ItemFilter<I extends Item> = {

src/interfaces/Filter.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ export interface ComparisonFilter<Value> {
99
readonly $lte?: Value;
1010
readonly $ne?: Value;
1111
readonly $nin?: Value[];
12+
readonly $not?: ComparisonFilter<Value>;
1213
readonly $search?: Value;
1314
}
1415

0 commit comments

Comments
 (0)