Glide api get rows only returns 10k rows in the big table?

I have two glide tables that I use the get rows api to load this data into Python

my normal table returns all rows, but when the api runs on a big table it only returns 10k, is there a way to get all rows?

If there are more rows in the table, then the API response should include a next attribute.
To fetch the remaining (or next page of) rows, you should send a subsequent request using the next value with the startAt attribute.

2 Likes

Thank you Darren!

This topic was automatically closed 7 days after the last reply. New replies are no longer allowed.