Forum Discussion

omygoodness's avatar
8 years ago

LiQL limited size of query

When I try to get results using LiQL for example SELECT * FROM messages I get only 25 results. Is there global limit for size of query?
  • VarunGrazitti's avatar
    8 years ago
    Yes, by default it is 25. However, you can pass the limit as LIMIT 100 or any number. Maximum is 1000. After that, you can paginate using OFFSET. More in the V2 API documentation.