Showdey
Why doesn't Query.select work on users.list() from node-appwrite? It isn't mentioned in the documentation that it should not. If i do the request without Query it returns me a full list but with it just undefined.
TypeScript
async function listUsers() {
try {
return await users.list([Query.select(["$id", "name", "email", "prefs"])]);
} catch (e) {
error_handler.setError((e as Error).message);
}
}```
TL;DR
Developers are facing an issue with Query.select not working on users.list() from node-appwrite. The request returns undefined when Query is used. No solution was provided in the thread. Recommended threads
- Custom emails
What happen if I use a third party email provider to customize my emails and my plan run out of emails/month? Appwrite emails are used as fallback sending emai...
- Realtime with multiple connections
I need the Realtime on multiple Collections for diffrent applicational logic. So my question is: Is there a way to have only 1 Websocket connection or do I need...
- Can't login or deploy functions in Appwr...
Hello, since i updatet to the appwrite cli 6.1.0 i can't login or deploy functions with the cli. When i call the command: "appwrite get account --verbose" i ge...