You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* @property {string[]} queries Array of query strings generated using the Query class provided by the SDK. [Learn more about queries](https://appwrite.io/docs/queries). Maximum of 100 queries are allowed, each 4096 characters long. You may filter on the following attributes: userId, provider, providerUid, providerEmail, providerAccessTokenExpiry
188
+
* @property {boolean} total When set to false, the total count returned will be 0 and will not be calculated.
* @property {string[]} queries Array of query strings generated using the Query class provided by the SDK. [Learn more about queries](https://appwrite.io/docs/queries). Only supported methods are limit and offset
283
+
* @property {boolean} total When set to false, the total count returned will be 0 and will not be calculated.
.description(`Get the list of identities for the currently logged in user.`)
1767
1775
.option(`--queries [queries...]`,`Array of query strings generated using the Query class provided by the SDK. [Learn more about queries](https://appwrite.io/docs/queries). Maximum of 100 queries are allowed, each 4096 characters long. You may filter on the following attributes: userId, provider, providerUid, providerEmail, providerAccessTokenExpiry`)
1776
+
.option(`--total [value]`,`When set to false, the total count returned will be 0 and will not be calculated.`,(value)=>value===undefined ? true : parseBool(value))
1768
1777
.action(actionRunner(accountListIdentities))
1769
1778
1770
1779
account
@@ -1782,6 +1791,7 @@ account
1782
1791
.command(`list-logs`)
1783
1792
.description(`Get the list of latest security activity logs for the currently logged in user. Each log returns user IP address, location and date and time of log.`)
1784
1793
.option(`--queries [queries...]`,`Array of query strings generated using the Query class provided by the SDK. [Learn more about queries](https://appwrite.io/docs/queries). Only supported methods are limit and offset`)
1794
+
.option(`--total [value]`,`When set to false, the total count returned will be 0 and will not be calculated.`,(value)=>value===undefined ? true : parseBool(value))
Copy file name to clipboardExpand all lines: lib/commands/databases.js
+30-5Lines changed: 30 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -43,6 +43,7 @@ const databases = new Command("databases").description(commandDescriptions['data
43
43
* @typedef {Object} DatabasesListRequestParams
44
44
* @property {string[]} queries Array of query strings generated using the Query class provided by the SDK. [Learn more about queries](https://appwrite.io/docs/queries). Maximum of 100 queries are allowed, each 4096 characters long. You may filter on the following attributes: name
45
45
* @property {string} search Search term to filter your list results. Max length: 256 chars.
46
+
* @property {boolean} total When set to false, the total count returned will be 0 and will not be calculated.
46
47
* @property {boolean} overrideForCli
47
48
* @property {boolean} parseOutput
48
49
* @property {libClient | undefined} sdk
@@ -51,7 +52,7 @@ const databases = new Command("databases").description(commandDescriptions['data
* @property {string[]} queries Array of query strings generated using the Query class provided by the SDK. [Learn more about queries](https://appwrite.io/docs/queries). Maximum of 100 queries are allowed, each 4096 characters long. You may filter on the following attributes: name, enabled, documentSecurity
469
473
* @property {string} search Search term to filter your list results. Max length: 256 chars.
474
+
* @property {boolean} total When set to false, the total count returned will be 0 and will not be calculated.
* @property {string[]} queries Array of query strings generated using the Query class provided by the SDK. [Learn more about queries](https://appwrite.io/docs/queries). Maximum of 100 queries are allowed, each 4096 characters long. You may filter on the following attributes: key, type, size, required, array, status, error
683
+
* @property {boolean} total When set to false, the total count returned will be 0 and will not be calculated.
* @property {string} collectionId Collection ID. You can create a new collection using the Database service [server integration](https://appwrite.io/docs/server/databases#databasesCreateCollection).
2010
2022
* @property {string[]} queries Array of query strings generated using the Query class provided by the SDK. [Learn more about queries](https://appwrite.io/docs/queries). Maximum of 100 queries are allowed, each 4096 characters long.
2011
2023
* @property {string} transactionId Transaction ID to read uncommitted changes within the transaction.
2024
+
* @property {boolean} total When set to false, the total count returned will be 0 and will not be calculated.
* @property {string} collectionId Collection ID. You can create a new collection using the Database service [server integration](https://appwrite.io/docs/server/databases#databasesCreateCollection).
2558
2574
* @property {string[]} queries Array of query strings generated using the Query class provided by the SDK. [Learn more about queries](https://appwrite.io/docs/queries). Maximum of 100 queries are allowed, each 4096 characters long. You may filter on the following attributes: key, type, status, attributes, error
2575
+
* @property {boolean} total When set to false, the total count returned will be 0 and will not be calculated.
.description(`[**DEPRECATED** - This command is deprecated. Please use 'tables-db list' instead] Get a list of all databases from the current Appwrite project. You can use the search parameter to filter your results.`)
2846
2866
.option(`--queries [queries...]`,`Array of query strings generated using the Query class provided by the SDK. [Learn more about queries](https://appwrite.io/docs/queries). Maximum of 100 queries are allowed, each 4096 characters long. You may filter on the following attributes: name`)
2847
2867
.option(`--search <search>`,`Search term to filter your list results. Max length: 256 chars.`)
2868
+
.option(`--total [value]`,`When set to false, the total count returned will be 0 and will not be calculated.`,(value)=>value===undefined ? true : parseBool(value))
2848
2869
.option(`--console`,`Get the resource console url`)
.option(`--queries [queries...]`,`Array of query strings generated using the Query class provided by the SDK. [Learn more about queries](https://appwrite.io/docs/queries). Maximum of 100 queries are allowed, each 4096 characters long. You may filter on the following attributes: name, enabled, documentSecurity`)
2933
2954
.option(`--search <search>`,`Search term to filter your list results. Max length: 256 chars.`)
2955
+
.option(`--total [value]`,`When set to false, the total count returned will be 0 and will not be calculated.`,(value)=>value===undefined ? true : parseBool(value))
2934
2956
.option(`--console`,`Get the resource console url`)
.option(`--queries [queries...]`,`Array of query strings generated using the Query class provided by the SDK. [Learn more about queries](https://appwrite.io/docs/queries). Maximum of 100 queries are allowed, each 4096 characters long. You may filter on the following attributes: key, type, size, required, array, status, error`)
3002
+
.option(`--total [value]`,`When set to false, the total count returned will be 0 and will not be calculated.`,(value)=>value===undefined ? true : parseBool(value))
2980
3003
.option(`--console`,`Get the resource console url`)
2981
3004
.action(actionRunner(databasesListAttributes))
2982
3005
@@ -3300,6 +3323,7 @@ databases
3300
3323
.requiredOption(`--collection-id <collection-id>`,`Collection ID. You can create a new collection using the Database service [server integration](https://appwrite.io/docs/server/databases#databasesCreateCollection).`)
3301
3324
.option(`--queries [queries...]`,`Array of query strings generated using the Query class provided by the SDK. [Learn more about queries](https://appwrite.io/docs/queries). Maximum of 100 queries are allowed, each 4096 characters long.`)
3302
3325
.option(`--transaction-id <transaction-id>`,`Transaction ID to read uncommitted changes within the transaction.`)
3326
+
.option(`--total [value]`,`When set to false, the total count returned will be 0 and will not be calculated.`,(value)=>value===undefined ? true : parseBool(value))
3303
3327
.option(`--console`,`Get the resource console url`)
.requiredOption(`--collection-id <collection-id>`,`Collection ID. You can create a new collection using the Database service [server integration](https://appwrite.io/docs/server/databases#databasesCreateCollection).`)
3434
3458
.option(`--queries [queries...]`,`Array of query strings generated using the Query class provided by the SDK. [Learn more about queries](https://appwrite.io/docs/queries). Maximum of 100 queries are allowed, each 4096 characters long. You may filter on the following attributes: key, type, status, attributes, error`)
3459
+
.option(`--total [value]`,`When set to false, the total count returned will be 0 and will not be calculated.`,(value)=>value===undefined ? true : parseBool(value))
3435
3460
.option(`--console`,`Get the resource console url`)
0 commit comments