@@ -9,17 +9,17 @@ export class Query {
9
9
static notEqual = (attribute: string, value: QueryTypes): string =>
10
10
Query.addQuery(attribute, "notEqual", value);
11
11
12
- static lesser = (attribute: string, value: QueryTypes): string =>
13
- Query.addQuery(attribute, "lesser ", value);
12
+ static lessThan = (attribute: string, value: QueryTypes): string =>
13
+ Query.addQuery(attribute, "lessThan ", value);
14
14
15
- static lesserEqual = (attribute: string, value: QueryTypes): string =>
16
- Query.addQuery(attribute, "lesserEqual ", value);
15
+ static lessThanEqual = (attribute: string, value: QueryTypes): string =>
16
+ Query.addQuery(attribute, "lessThanEqual ", value);
17
17
18
- static greater = (attribute: string, value: QueryTypes): string =>
19
- Query.addQuery(attribute, "greater ", value);
18
+ static greaterThan = (attribute: string, value: QueryTypes): string =>
19
+ Query.addQuery(attribute, "greaterThan ", value);
20
20
21
- static greaterEqual = (attribute: string, value: QueryTypes): string =>
22
- Query.addQuery(attribute, "greaterEqual ", value);
21
+ static greaterThanEqual = (attribute: string, value: QueryTypes): string =>
22
+ Query.addQuery(attribute, "greaterThanEqual ", value);
23
23
24
24
static search = (attribute: string, value: string): string =>
25
25
Query.addQuery(attribute, "search", value);
0 commit comments