Is there a limit to the amount of rows returned? #3765
-
The documentation says the maximum rows returned defaults to 1000. We have increased this limit, and for our use-case we may need to increase it further in the future. I was wondering if there is some maximum value, or if I can just arbitrarily increase this limit? |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 11 replies
-
You should probably keep that limit and paginate the rest of the results. The higher you increase it to the slower the query will become to return the records. I don't think there is a maximum value. |
Beta Was this translation helpful? Give feedback.
-
The accepted answer doesn't help at all. You can increase the limit here: https://supabase.com/dashboard/project/:id/settings/api at the very bottom (Search "Max rows"). Maximum value allowed is |
Beta Was this translation helpful? Give feedback.
You should probably keep that limit and paginate the rest of the results. The higher you increase it to the slower the query will become to return the records. I don't think there is a maximum value.