I have issue with getting details from forms based on a list of forms
List of forms: https://api.goformz.com/v2/formz
Form details: https://api.goformz.com/v2/formz/formId
Both nested query and pagination works seperately, but I struggle to get it work with both of them. I have tried the solution in the linked case below, but I get stuck on the same place as the user in that case:
The query table is running for approximately correct time (which indicates it is reading the correct amount of data), but no data is going into the SQL-table.
The query is this simple:
SELECT fields,formId FROM REST.Formz_DataPerForm
WHERE Nested_Id IN (SELECT formId FROM REST.formz_WithDateFilter)
Is it possible to get this working?