Why is my SQL query, using the REST API, only returning 100 rows? The table I am querying currently has over 5000 rows. This is the query I am running:
“{”“sql”“:”“select * from MyTableName”“,”“convert_keys”“:true}”
You need to explicitly add limit 5000 to get 5000 rows.
The design is to prevent overload for SeaTable server. Unlike traditional database like MySQL, SeaTable server is intended to be used directly by thousands of end users.