I have a gallery table with checkboxes used to collect id's. The id's will then be put into a query to call our API. The empty collection is initiated on page load with:
ClearCollect(selectedIds, []);
The OnSelect for the checkbox is:
Collect(selectedIds, ThisItem.Id);
I get a table with :
I then have to create a query string like so:
CustomConnectorCall.getData(query:"query{GetData(where:{ids:{eq: ["123", "456"]}}){...}}")
I know I'll have to do some form of string concatenation but how can I parse through a collection of unknown quantities to add to this string? In code, I would just write a for loop but I'm not sure how to do that in PowerApps. Thanks!