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 762df45 commit 0635c37Copy full SHA for 0635c37
src/query.ts
@@ -78,6 +78,9 @@ export class Query {
78
static orderAsc = (attribute: string): string =>
79
new Query("orderAsc", attribute).toString();
80
81
+ static orderRandom = (): string =>
82
+ new Query("orderRandom").toString();
83
+
84
static cursorAfter = (documentId: string): string =>
85
new Query("cursorAfter", undefined, documentId).toString();
86
0 commit comments