File tree Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -51,7 +51,8 @@ export class Query {
51
51
static greaterThanEqual = (attribute: string, value: QueryTypes): string =>
52
52
new Query("greaterThanEqual", attribute, value).toString();
53
53
54
- static isNull = (attribute: string): string => new Query("isNull", attribute);
54
+ static isNull = (attribute: string): string =>
55
+ new Query("isNull", attribute).toString();
55
56
56
57
static isNotNull = (attribute: string): string =>
57
58
new Query("isNotNull", attribute).toString();
@@ -86,7 +87,8 @@ export class Query {
86
87
static cursorBefore = (documentId: string): string =>
87
88
new Query("cursorBefore", undefined, documentId).toString();
88
89
89
- static limit = (limit: number): string => new Query("limit", undefined, limit).toString();
90
+ static limit = (limit: number): string =>
91
+ new Query("limit", undefined, limit).toString();
90
92
91
93
static offset = (offset: number): string =>
92
94
new Query("offset", undefined, offset).toString();
You can’t perform that action at this time.
0 commit comments