We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0518e66 commit ef27c6eCopy full SHA for ef27c6e
index.d.ts
@@ -1852,6 +1852,18 @@ declare module "node-appwrite" {
1852
1853
static greaterThanEqual(attribute: string, value: QueryTypes): string;
1854
1855
+ static isNull(attribute: string): string;
1856
+
1857
+ static isNotNull(attribute: string): string;
1858
1859
+ static between<T extends string | number>(attribute: string, start: T, end: T): string;
1860
1861
+ static startsWith(attribute: string, value: string): string;
1862
1863
+ static endsWith(attribute: string, value: string): string;
1864
1865
+ static select(attributes: string[]): string;
1866
1867
static search(attribute: string, value: string): string;
1868
1869
static orderDesc(attribute: string): string;
0 commit comments