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
- Cant configure email templates
i configure it on the console, and when i send the OTP, it sends with appwrite's email (instead of custom smtp) and with the branding, but i have the Pro (educa...
- Need help with createExecution function
Hi, Need some help understanding createExecution. When requesting function execution via createExecution, the function handler arguments are incorrect and rese...
- Need Help with Google OAuth2 in Expo usi...
I'm learning React Native with Expo and trying to set up Google OAuth2 with Appwrite. I couldn't find any good docs or tutorials for this and my own attempt did...