hkremer
4 years agoHelper
REST API Limit
Hi there, I understand that the max results for LiQL query is 1000 (source). However, when making a call SELECT * FROM messages limit 1000 I get hit with a 414. I'm struggling to find any...
hkremer, can you share your code here if possible. Looks like you are doing something wrong. Since error is related to URL long or server request too long.
SELECT id FROM messages LIMIT 1000
returns
{
"status": "error",
"message": "Permission Denied",
"data": {
"type": "error_data",
"code": 414,
"developer_message": "",
"more_info": ""
},
"metadata": {}
}
however
SELECT id FROM messages LIMIT 700
returns a complete list