Hi, we need to up the functions timeout from 10s to the max (26s I think) for 2 pro accounts:
d5f9d20d-1266-4b88-8e7c-cf4518884221
15b995b4-d1ff-4b6e-838c-58f6c6720773
Thanks!
β
Secondly, we are implementing our own Download CSV feature and are hitting up a against a number of limitations. Please consider a few feature requests:
-
The forms API should return total record count for the form, a common feature of pagination APIs. This would allow us to know how many records we are trying to fetch and adjust how aggressively we call the API.
-
The 100-item limit is ok for pagination but way too low for a CSV download feature. Please consider increasing it to around 1000 or providing a more efficient CSV download endpoint. (I notice that even your panel makes 100-item queries in a loop but this is very slow for lots of form data, so even you guys could really use it!) The API also seems to rate-limit and reject after we query over 48k records. We donβt have that many records yet but to future-proof, weβve resorted to making a Promise.all() batch query within a loop, really not ideal
-
Please provide a sort_by input in the forms API!! Without this, our UI is constrained to only displaying form data by date, but our client would like to be able to sort (paginated records) by one of our human fields β name, email, contact preference, etc.
We are looking into migrating the data off of Netlify Forms due to these limitations but could easily continue working with it if any or all of these features were being considered. Got any plans for them? Thank you again.