Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Change Log

## 19.1.0

* Added `--where`, `--sort-asc`, `--sort-desc`, `--limit`, `--offset`, `--cursor-after`, and `--cursor-before` flags on list commands across services
* Added `--select` flag on `databases list-documents`, `tablesdb list-rows`, and other row/document list commands
* Added a hint after query-related errors that points to the new flag-based filters
* Updated `--queries` description to mark it as the legacy raw-JSON option, recommending the new flag-based filters for common cases
* Updated bundled examples to demonstrate `--limit` on list commands

## 19.0.0

* Breaking: Renamed `project update-protocol-status` to `project update-protocol`
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ Once the installation is complete, you can verify the install using

```sh
$ appwrite -v
19.0.0
19.1.0
```

### Install using prebuilt binaries
Expand Down Expand Up @@ -62,7 +62,7 @@ $ scoop install https://raw.githubusercontent.com/appwrite/sdk-for-cli/master/sc
Once the installation completes, you can verify your install using
```
$ appwrite -v
19.0.0
19.1.0
```

## Getting Started
Expand Down
11 changes: 5 additions & 6 deletions bun.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 2 additions & 1 deletion docs/examples/account/list-identities.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
```bash
appwrite account list-identities
appwrite account list-identities \
--limit 25
```
3 changes: 2 additions & 1 deletion docs/examples/account/list-logs.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
```bash
appwrite account list-logs
appwrite account list-logs \
--limit 25
```
3 changes: 2 additions & 1 deletion docs/examples/backups/list-archives.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
```bash
appwrite backups list-archives
appwrite backups list-archives \
--limit 25
```
3 changes: 2 additions & 1 deletion docs/examples/backups/list-policies.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
```bash
appwrite backups list-policies
appwrite backups list-policies \
--limit 25
```
3 changes: 2 additions & 1 deletion docs/examples/backups/list-restorations.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
```bash
appwrite backups list-restorations
appwrite backups list-restorations \
--limit 25
```
3 changes: 2 additions & 1 deletion docs/examples/databases/delete-documents.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
```bash
appwrite databases delete-documents \
--database-id <DATABASE_ID> \
--collection-id <COLLECTION_ID>
--collection-id <COLLECTION_ID> \
--limit 25
```
3 changes: 2 additions & 1 deletion docs/examples/databases/list-attributes.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
```bash
appwrite databases list-attributes \
--database-id <DATABASE_ID> \
--collection-id <COLLECTION_ID>
--collection-id <COLLECTION_ID> \
--limit 25
```
3 changes: 2 additions & 1 deletion docs/examples/databases/list-collection-logs.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
```bash
appwrite databases list-collection-logs \
--database-id <DATABASE_ID> \
--collection-id <COLLECTION_ID>
--collection-id <COLLECTION_ID> \
--limit 25
```
3 changes: 2 additions & 1 deletion docs/examples/databases/list-collections.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
```bash
appwrite databases list-collections \
--database-id <DATABASE_ID>
--database-id <DATABASE_ID> \
--limit 25
```
3 changes: 2 additions & 1 deletion docs/examples/databases/list-document-logs.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,6 @@
appwrite databases list-document-logs \
--database-id <DATABASE_ID> \
--collection-id <COLLECTION_ID> \
--document-id <DOCUMENT_ID>
--document-id <DOCUMENT_ID> \
--limit 25
```
3 changes: 2 additions & 1 deletion docs/examples/databases/list-documents.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
```bash
appwrite databases list-documents \
--database-id <DATABASE_ID> \
--collection-id <COLLECTION_ID>
--collection-id <COLLECTION_ID> \
--limit 25
```
3 changes: 2 additions & 1 deletion docs/examples/databases/list-indexes.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
```bash
appwrite databases list-indexes \
--database-id <DATABASE_ID> \
--collection-id <COLLECTION_ID>
--collection-id <COLLECTION_ID> \
--limit 25
```
3 changes: 2 additions & 1 deletion docs/examples/databases/list-logs.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
```bash
appwrite databases list-logs \
--database-id <DATABASE_ID>
--database-id <DATABASE_ID> \
--limit 25
```
3 changes: 2 additions & 1 deletion docs/examples/databases/list-transactions.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
```bash
appwrite databases list-transactions
appwrite databases list-transactions \
--limit 25
```
3 changes: 2 additions & 1 deletion docs/examples/databases/list.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
```bash
appwrite databases list
appwrite databases list \
--limit 25
```
3 changes: 2 additions & 1 deletion docs/examples/databases/update-documents.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
```bash
appwrite databases update-documents \
--database-id <DATABASE_ID> \
--collection-id <COLLECTION_ID>
--collection-id <COLLECTION_ID> \
--limit 25
```
3 changes: 2 additions & 1 deletion docs/examples/functions/list-deployments.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
```bash
appwrite functions list-deployments \
--function-id <FUNCTION_ID>
--function-id <FUNCTION_ID> \
--limit 25
```
3 changes: 2 additions & 1 deletion docs/examples/functions/list-executions.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
```bash
appwrite functions list-executions \
--function-id <FUNCTION_ID>
--function-id <FUNCTION_ID> \
--limit 25
```
3 changes: 2 additions & 1 deletion docs/examples/functions/list.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
```bash
appwrite functions list
appwrite functions list \
--limit 25
```
3 changes: 2 additions & 1 deletion docs/examples/messaging/list-message-logs.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
```bash
appwrite messaging list-message-logs \
--message-id <MESSAGE_ID>
--message-id <MESSAGE_ID> \
--limit 25
```
3 changes: 2 additions & 1 deletion docs/examples/messaging/list-messages.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
```bash
appwrite messaging list-messages
appwrite messaging list-messages \
--limit 25
```
3 changes: 2 additions & 1 deletion docs/examples/messaging/list-provider-logs.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
```bash
appwrite messaging list-provider-logs \
--provider-id <PROVIDER_ID>
--provider-id <PROVIDER_ID> \
--limit 25
```
3 changes: 2 additions & 1 deletion docs/examples/messaging/list-providers.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
```bash
appwrite messaging list-providers
appwrite messaging list-providers \
--limit 25
```
3 changes: 2 additions & 1 deletion docs/examples/messaging/list-subscriber-logs.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
```bash
appwrite messaging list-subscriber-logs \
--subscriber-id <SUBSCRIBER_ID>
--subscriber-id <SUBSCRIBER_ID> \
--limit 25
```
3 changes: 2 additions & 1 deletion docs/examples/messaging/list-subscribers.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
```bash
appwrite messaging list-subscribers \
--topic-id <TOPIC_ID>
--topic-id <TOPIC_ID> \
--limit 25
```
3 changes: 2 additions & 1 deletion docs/examples/messaging/list-targets.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
```bash
appwrite messaging list-targets \
--message-id <MESSAGE_ID>
--message-id <MESSAGE_ID> \
--limit 25
```
3 changes: 2 additions & 1 deletion docs/examples/messaging/list-topic-logs.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
```bash
appwrite messaging list-topic-logs \
--topic-id <TOPIC_ID>
--topic-id <TOPIC_ID> \
--limit 25
```
3 changes: 2 additions & 1 deletion docs/examples/messaging/list-topics.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
```bash
appwrite messaging list-topics
appwrite messaging list-topics \
--limit 25
```
3 changes: 2 additions & 1 deletion docs/examples/migrations/create-csv-export.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
```bash
appwrite migrations create-csv-export \
--resource-id <ID1:ID2> \
--filename <FILENAME>
--filename <FILENAME> \
--limit 25
```
3 changes: 2 additions & 1 deletion docs/examples/migrations/create-json-export.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
```bash
appwrite migrations create-json-export \
--resource-id <ID1:ID2> \
--filename <FILENAME>
--filename <FILENAME> \
--limit 25
```
3 changes: 2 additions & 1 deletion docs/examples/migrations/list.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
```bash
appwrite migrations list
appwrite migrations list \
--limit 25
```
3 changes: 2 additions & 1 deletion docs/examples/organizations/list-aggregations.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
```bash
appwrite organizations list-aggregations \
--organization-id <ORGANIZATION_ID>
--organization-id <ORGANIZATION_ID> \
--limit 25
```
3 changes: 2 additions & 1 deletion docs/examples/organizations/list-credits.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
```bash
appwrite organizations list-credits \
--organization-id <ORGANIZATION_ID>
--organization-id <ORGANIZATION_ID> \
--limit 25
```
3 changes: 2 additions & 1 deletion docs/examples/organizations/list.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
```bash
appwrite organizations list
appwrite organizations list \
--limit 25
```
3 changes: 2 additions & 1 deletion docs/examples/project/list-keys.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
```bash
appwrite project list-keys
appwrite project list-keys \
--limit 25
```
3 changes: 2 additions & 1 deletion docs/examples/project/list-platforms.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
```bash
appwrite project list-platforms
appwrite project list-platforms \
--limit 25
```
3 changes: 2 additions & 1 deletion docs/examples/project/list-variables.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
```bash
appwrite project list-variables
appwrite project list-variables \
--limit 25
```
3 changes: 2 additions & 1 deletion docs/examples/projects/list-dev-keys.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
```bash
appwrite projects list-dev-keys \
--project-id <PROJECT_ID>
--project-id <PROJECT_ID> \
--limit 25
```
3 changes: 2 additions & 1 deletion docs/examples/projects/list-schedules.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
```bash
appwrite projects list-schedules \
--project-id <PROJECT_ID>
--project-id <PROJECT_ID> \
--limit 25
```
3 changes: 2 additions & 1 deletion docs/examples/projects/list.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
```bash
appwrite projects list
appwrite projects list \
--limit 25
```
3 changes: 2 additions & 1 deletion docs/examples/proxy/list-rules.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
```bash
appwrite proxy list-rules
appwrite proxy list-rules \
--limit 25
```
3 changes: 2 additions & 1 deletion docs/examples/sites/list-deployments.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
```bash
appwrite sites list-deployments \
--site-id <SITE_ID>
--site-id <SITE_ID> \
--limit 25
```
3 changes: 2 additions & 1 deletion docs/examples/sites/list-logs.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
```bash
appwrite sites list-logs \
--site-id <SITE_ID>
--site-id <SITE_ID> \
--limit 25
```
3 changes: 2 additions & 1 deletion docs/examples/sites/list.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
```bash
appwrite sites list
appwrite sites list \
--limit 25
```
3 changes: 2 additions & 1 deletion docs/examples/storage/list-buckets.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
```bash
appwrite storage list-buckets
appwrite storage list-buckets \
--limit 25
```
3 changes: 2 additions & 1 deletion docs/examples/storage/list-files.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
```bash
appwrite storage list-files \
--bucket-id <BUCKET_ID>
--bucket-id <BUCKET_ID> \
--limit 25
```
Loading
Loading