Browse Source

Add information about maximum value for `limit` in REST API

pull/2241/head
Nils Reichardt 3 years ago committed by GitHub
parent
commit
1dd20c1d9f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      packages/nocodb/src/lib/noco/meta/api/swagger/helpers/templates/params.ts

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

@ -59,7 +59,7 @@ export const limitParam = {
in: 'query',
name: 'limit',
description:
'The `limit` parameter used for pagination, the response collection size depends on limit value and default value is `25`.',
'The `limit` parameter used for pagination, the response collection size depends on limit value and default value is `25`. Maxium value is `1000`.',
example: 25
};
export const offsetParam = {

Loading…
Cancel
Save