Hello,
I am using SvelteKit and node-appwrite 12.0.0 and the Query.contains type does not exist.
import sdk, { Query } from 'node-appwrite';
This is how i am attempting to use it
const docs = await databaseNode.listDocuments(dbId, PRIVATE_COLLECTION_USER_DATA, [Query.contains('search', query)]);
When i look at the package index.d.ts where it has export class Query {. its not listed as a type
Any ideas? Thanks