Skip to main content
Module

x/appwrite/mod.ts>Query

[READ-ONLY] Official Appwrite Deno SDK 🦕
Go to Latest
class Query
Re-export
import { Query } from "https://deno.land/x/appwrite@8.0.0/mod.ts";

Static Properties

private
addQuery: (
attribute: string,
method: string,
value: QueryTypes,
) => string
private
parseValues: (value: QueryTypes) => string
between: (
attribute: string,
start: string | number,
end: string | number,
) => string
cursorAfter: (documentId: string) => string
cursorBefore: (documentId: string) => string
endsWith: (attribute: string, value: string) => string
equal: (attribute: string, value: QueryTypes) => string
greaterThan: (attribute: string, value: QueryTypes) => string
greaterThanEqual: (attribute: string, value: QueryTypes) => string
isNotNull: (attribute: string) => string
isNull: (attribute: string) => string
lessThan: (attribute: string, value: QueryTypes) => string
lessThanEqual: (attribute: string, value: QueryTypes) => string
limit: (limit: number) => string
notEqual: (attribute: string, value: QueryTypes) => string
offset: (offset: number) => string
orderAsc: (attribute: string) => string
orderDesc: (attribute: string) => string
select: (attributes: string[]) => string
startsWith: (attribute: string, value: string) => string