Even checking the documentation, I didn't understand how to use queries via REST API.
I'm trying to fetch a document with Id=3: /collections/GRUPO/documents?queries[select(["$id"])]="3"
This gives me the following error: "Query not valid: Query operator invalid: "
What am I doing wrong?
Use it like so
queries[]=select(["$id"])&queries[]=limit(3)
For more info, see the docs: https://appwrite.io/docs/rest#query
Recommended threads
- Query Appwrite
Hello, I have a question regarding Queries in Appwrite. If I have a string "YYYY-MM", how can I query the $createdAt column to match this filter?
- Different appwrite IDs are getting expos...
File_URL_FORMAT= https://cloud.appwrite.io/v1/storage/buckets/[BUCKET_ID]/files/[FILE_ID]/preview?project=[PROJECT_ID] I'm trying to access files in my web app...
- Invalid document structure: missing requ...
I just pick up my code that's working a week ago, and now I got this error: ``` code: 400, type: 'document_invalid_structure', response: { message: 'Inv...