
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
- Is my approach for deleting registered u...
A few weeks ago, I was advised not to use the registered users' id in my web app. Instead, I store the publicly viewable information such as username and email ...
- How do I get a list of registered user o...
I'm lost here, all info in the docs was how to get users that of a certain project, what I want to know is how to get current login-able user of my appwrite ins...
- Is Quick Start for function creation wor...
I am trying to create a Node.js function using the Quick Start feature. It fails and tells me that it could not locate the package.json file. Isn't Quick Start ...
