I am using a Make Scenario to achieve the following workflow:
Trigger: New Comment added to Asset
Get Comment
Get Asset 4. List Review Links from Project 5. Filter: get Review Link Item where the Asset ID of the Review Link Item matches the one from the triggered Asset
Search Project Management Task (ClickUp) based on the short Link found
Edit Task Status
Now the problem lies in the Module in step 4. which seems to only show a maximum amount of 50 Items. So if the right one is one of the subsequent items it will not be shown. Thus the filter does not get a match and the secenario ends.
I haven’t found any configuration to change a maximum amount of items pulled. Does anyone know how to solve this issue?
To get more items, you could append a query param of ?page_size=100 to the API request, but that may increase the latency on the request and the max supported latency for our API is 30 seconds (but may decrease in the future). The right approach is to make paginated requests in order to build up the full list of items in a list response, but I’m not sure how easy that might be to do via Make.