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...
Just to also add a best practise comment here, try to avoid requesting 1000 records of lots of fields, this will result in very slow api calls and have a negative effect on page load time.
Where possible make short calls into the API and use pagination as the user needs the details. If a large call is unavoidable make it for the bare minimum fields you need.