BRAND NEW TO MAKE so be gentle
We are making an API call to ClickUp to get the task and its subtasks
/v2/task/{{2.id}}?include_subtasks=true
We then want to check if one of the subtasks has a a value of X for the task name, if not we want to proceed and create the subtask that will have that task name. The scenario is listening for updates so when the Parent task is updated it will fire off the scenario. We have tried to add a filter and that works for the first pass if there was a subtask with Y and not X, but when it runs again that is also true as Y is not X. We want to check each subtask and then if X is present we do not want to continue.
We have tried an iterator and we can then get each subtask but unsure how to regroup as the aggregator may not be what we want to use.
I have tried looking through the community but not sure how to search for terms just yet. Any assistance is appreciated.
*Update 2023-01-30
we want to check each subtask and then regroup the answer, so if any of the subtasks 1,2, or 3 have X then FALSE. If not then proceed.