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
- How to Display File in Web?
I'm trying to use Appwrite's Storage to store images and display them in my app, however when I use the `getFileView`, `getFileDownload` or `getFilePreview` met...
- Selfhosted Github App installation
I've followed this guide: https://appwrite.io/docs/advanced/self-hosting/configuration/version-control to connect GitHub to my self-hosted Appwrite instance (1....
- Project Paused Despite Daily Active Usag...
I noticed that my project was automatically **paused**, even though it is actively being used. The project is an **attendance application** that is used daily b...