Browse Source

chore: update query limit description

pull/2318/head
Wing-Kam Wong 3 years ago
parent
commit
92d02467a0
  1. 2
      packages/nocodb/src/lib/meta/api/swagger/helpers/templates/params.ts

2
packages/nocodb/src/lib/meta/api/swagger/helpers/templates/params.ts

@ -59,7 +59,7 @@ export const limitParam = {
in: 'query', in: 'query',
name: 'limit', name: 'limit',
description: description:
'The `limit` parameter used for pagination, the response collection size depends on limit value and default value is `25`. Maximum value is `1000`.', 'The `limit` parameter used for pagination, the response collection size depends on limit value with default value `25` and maximum value `1000`, which can be overridden by environment variables `DB_QUERY_LIMIT_DEFAULT` and `DB_QUERY_LIMIT_MAX` respectively.',
example: 25 example: 25
}; };
export const offsetParam = { export const offsetParam = {

Loading…
Cancel
Save