
TypeScript
Query.select(["$id", "$createdAt", "$updatedAt", "name", "email"])
);
``` ``` const result = await users.list(testQuery)
log.info(result)
Response
{"name":"AppwriteException","code":400,"type":"general_argument_invalid","response":{"message":"Invalid queries param: Invalid query method: select","code":400,"type":"general_argument_invalid","version":"1.5.7"}}
appwrite 1.5.7 "node-appwrite": "^13.0.0",
TL;DR
Developers encountered an 'Invalid Query.Select' error when using a query select method in their code. The issue stems from the incorrect usage of the select method within the Query.select function.
Solution: Ensure the correct syntax for the query. Use the appropriate method for selecting fields in the query to resolve the error.Recommended threads
- Updating console to 1.8
Hey! Does anyone know how to update the appwrite console only? I am using console 1.7.4 but it has UI/UX issues š
- Adding "name" column to table creates 2-...
As stated, im adding the "name" column to one table, it adds 4 duplicates. In another table it adds 3 duplicates, and when I delete 1 of them, all duplucates di...
- Server Error when Pushing a Function
Get this ambiguous error when trying to push my function, it's TypeScript using NodeJS 18 ``` ? Which functions would you like to push? get-grades (get-grades)...
