🐛 (results) Lower the max limit in getResults endpoint to avoid payload size error
Closes #908
This commit is contained in:
@ -29833,10 +29833,12 @@
|
||||
{
|
||||
"name": "limit",
|
||||
"in": "query",
|
||||
"required": true,
|
||||
"required": false,
|
||||
"schema": {
|
||||
"type": "string",
|
||||
"pattern": "^[0-9]{1,3}$"
|
||||
"type": "number",
|
||||
"minimum": 1,
|
||||
"maximum": 100,
|
||||
"default": 50
|
||||
}
|
||||
},
|
||||
{
|
||||
|
Reference in New Issue
Block a user