ShowdeyOriginal post
Rank 2: Process
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); }}```Summary
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.