Replies: 2 comments 2 replies
-
Hi @jpulver , The API has a 20K record limit per query. PostgREST (which is the software that acts as our API server) has pagination. So, you should be able to issue a query, find out you have 63K records, and then paginate through them in chunks of 20K,20K,20K,4K. I believe it is safe to say that 100% of the PostgREST documentation applies to our system. |
Beta Was this translation helpful? Give feedback.
-
To follow up: I have been known, when pressed, to wrap all queries in a loop, and then loop until I get back might be a sloppy example. Googling for "PostgREST paginate query" might turn up other examples. (I'm between meetings, so apologies for a quick reply, but I thought some pointers might be better than none.) |
Beta Was this translation helpful? Give feedback.
-
Is there a limit to 20,000 records being returned by the API? IF so, is there a workaround for this? Thanks
Beta Was this translation helpful? Give feedback.
All reactions