Hey when I was developing a Custom Node using the declarative style I stumpled over a problem:
In my case the API I’m requesting has for some endpoints the option to send an array of changes to bulk create or update entries.
Really similar to the “Append” Operation of the Airtable Node. So basically I want to send all incoming Items, but split the incoming items into a batches of up to 1000 items (if applicable) and send these to the endpoint within my node.
Is there a way to achieve that the declarative way?
That would really help to reduce the amount of API Requests made to that API, since it’s limited depending on your subscription to that service.