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
- Functions Problem
Whenever I run my AI Generate through Appwrite Functions, I am getting this Call Stack AIService.generateServer (src\services\ai\gemini.ts) next (<native>) ...
- How Can I Create landing page in appwrit...
I created function called invoice URL https://app.getrestt.com/v1/functions/invoice/executions?id=test-76f948fe83c43422561fe096c0674a1bd3ff0702cdfcf2444293ab31...
- DeploymentStatus enum value `canceled` m...
Hey, Sorry if it has been reported already, I found an issue using the Dart SDK where the `canceled` enum value is missing from `DeploymentStatus`. This causes...