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
- Appwriter Linux Key Bindings
Any tips for configuring appwriter for ubuntu? Actually the keybindings are tightly binded to either windows or mac. Working well on windows but in ubuntu some ...
- Admin Impersonating Clients?
I have a client that needs to use the admin User, to impersonate the Clients in order to debug better the App and the services that they are providing, could yo...
- create project api-rest
Hello good afternoon, I'm developing a project where I need to create a project by apirest, but I'm stuck with this "projects.read" permission, can I change my ...