chore: fix duplication

This commit is contained in:
Chirag Aggarwal
2025-03-19 12:59:47 +00:00
parent ce53c1019c
commit 154a2421d4
7 changed files with 7 additions and 7 deletions
+1 -1
View File
@@ -3403,7 +3403,7 @@ App::get('/v1/databases/:databaseId/collections/:collectionId/documents')
))
->param('databaseId', '', new UID(), 'Database ID.')
->param('collectionId', '', new UID(), 'Collection ID. You can create a new collection using the Database service [server integration](https://appwrite.io/docs/server/databases#databasesCreateCollection).')
->param('queries', [], new ArrayList(new Text(APP_LIMIT_ARRAY_ELEMENT_SIZE), APP_LIMIT_ARRAY_PARAMS_SIZE), 'Array of query strings generated using the Query class provided by the SDK. Query strings are in form of JSON strings like: {"method":"equal", "attribute":"<attribute>", "values":[]}. Available query methods: equal, notEqual, lessThan, lessThanEqual, greaterThan, greaterThanEqual, contains, between, search, select, orderDesc, orderAsc, isNull, isNotNull, startsWith, endsWith, limit, offset. Available query methods: equal, notEqual, lessThan, lessThanEqual, greaterThan, greaterThanEqual, contains, between, search, select, orderDesc, orderAsc, isNull, isNotNull, startsWith, endsWith, limit, offset. [Learn more about queries](https://appwrite.io/docs/queries). Maximum of ' . APP_LIMIT_ARRAY_PARAMS_SIZE . ' queries are allowed, each ' . APP_LIMIT_ARRAY_ELEMENT_SIZE . ' characters long.', true) ->inject('response')
->param('queries', [], new ArrayList(new Text(APP_LIMIT_ARRAY_ELEMENT_SIZE), APP_LIMIT_ARRAY_PARAMS_SIZE), 'Array of query strings generated using the Query class provided by the SDK. Query strings are in form of JSON strings like: {"method":"equal", "attribute":"<attribute>", "values":[]}. Available query methods: equal, notEqual, lessThan, lessThanEqual, greaterThan, greaterThanEqual, contains, between, search, select, orderDesc, orderAsc, isNull, isNotNull, startsWith, endsWith, limit, offset. [Learn more about queries](https://appwrite.io/docs/queries). Maximum of ' . APP_LIMIT_ARRAY_PARAMS_SIZE . ' queries are allowed, each ' . APP_LIMIT_ARRAY_ELEMENT_SIZE . ' characters long.', true) ->inject('response')
->inject('dbForProject')
->inject('queueForStatsUsage')
->action(function (string $databaseId, string $collectionId, array $queries, Response $response, Database $dbForProject, StatsUsage $queueForStatsUsage) {