fix(api): adjust the maximum limit of page query to 10,000

This commit is contained in:
firest 2024-01-09 16:43:33 +08:00
parent 7f57ec47d5
commit d1234e3f75
1 changed files with 1 additions and 1 deletions

View File

@ -83,7 +83,7 @@
-define(SPECIAL_LANG_MSGID, <<"$msgid">>).
-define(MAX_ROW_LIMIT, 1000).
-define(MAX_ROW_LIMIT, 10000).
-define(DEFAULT_ROW, 100).
-type request() :: #{bindings => map(), query_string => map(), body => map()}.