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
- Relation Question
How do I create a relation from table y to an others x.$id. in my example I have a users table where I use Appwrites unique User IDs and I want other tables fo...
- Unknown attribute type: varchar / text
Since the `string` type is deprecated I tried using `varchar` and `text` in some newer tables, but when running `appwrite pull tables && appwrite types ./src/li...
- I'm experiencing a critical bug on Appwr...
Hey <@870607367597850624> team / support 👋 I'm experiencing a critical bug on Appwrite Cloud that's blocking my production Flutter app. I've already filed GitH...