
Is there a way to use the Query contains since cloud appwrite is now supporting QUery contains

I think there was a typing problem with the SDK. Try using https://www.npmjs.com/package/node-appwrite/v/12.1.0-rc.4

when I am using that:

the type of Document seems not so working

export interface RoleDocument extends Models.Document {
name: string;
permissions: string[];
}
export function getRoleIds(roles: RoleDocument[]): string[] {
return roles.map((role) => role.$id);
}

Weird...it should be there: https://github.com/appwrite/sdk-for-node/blob/0dc59ba0f6193b3ae0200a47de4a94584597f4f1/src/models.ts#L875

it somehow broken some of my code, it relates on type

I will try to re install my packages
Recommended threads
- Stuck at pinging the server to finish ad...
I'm not using the starter app and I'm not sure how to finish connecting my app to Appwrite.io. Is there a CURL command I can run to finish setup?
- 500 internal error
I get a 500 internal error when trying to access my database on appwrite cloud. Sometimes it would start working but this time it never corrects.
- Error getting session: AppwriteException...
I get this error `Error getting session: AppwriteException: User (role: guests) missing scope (account)` when running in prod. As soon as I try running my app o...
