Skip to content

Commit ee37f7a

Browse files
committed
chore(query): document query operators
1 parent 8accc2a commit ee37f7a

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

packages/provider/src/lib/types/Query.ts

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
export interface QueryOperators<Value> {
2-
ne?: Value;
3-
gt?: Value;
4-
gte?: Value;
5-
lt?: Value;
6-
lte?: Value;
7-
in?: Value[];
8-
nin?: Value[];
9-
regex?: RegExp;
2+
ne?: Value; // Not equal
3+
gt?: Value; // Greater than
4+
gte?: Value; // Greater than or equal to
5+
lt?: Value; // Less than
6+
lte?: Value; // Less than or equal to
7+
in?: Value[]; // In array
8+
nin?: Value[]; // Not in array
9+
regex?: RegExp; // Regular expression
1010
}
1111

1212
export type QueryOptions<Value> =

0 commit comments

Comments
 (0)