Hi, I cannot find how to pass more than one "query" param in CLI. This works :
appwrite databases listDocuments --json --databaseId xx --collectionId yyy --queries limit(100)
but this won't
appwrite databases listDocuments --json --databaseId xx --collectionId yyy --queries [limit(100),offset(100)]
I tried to put strings "[limit(100)","offset(100)"], escape the bracket \[...\], nothing works. Can you help me please? Thx.
Checkout this post. I need to contribute an example to the docs. https://discord.com/channels/564160730845151244/1172594759911620682
Thanks for the link. It didn't help but reading it I understand the expected Array of queries is not an Array, so I tried successfully a --queries "limit(100)" --queries "offset(100)"!
[SOLVED] CLI: can't pass array of query params
Glad to help even if indirectly
Recommended threads
- Broken Typeform Link for Appwrite Heroes...
I was trying to apply for the Appwrite Heroes program because I am planning to host a meetup for my local developer community on backend architecture using Appw...
- Storage System
Hey guys, quick question regarding massive storage scaling. I’m working in digital forensics and I’m constantly dealing with huge binary disk images, usually be...
- is `account.get()` safe to be used in th...
I want to user's `id` for authentication. However, a while ago I was told in this server not to use `account.get()` and instead add user preferences for that us...