Hi all,
I am creating a flow that will populate a "rightsized" field (Yes/No) on ADO depending on if the child item count for a Feature is above/below a certain value.
The flow works fine when there are child items but doesn't like when there are no child items, instead just ignoring those items (they should always be populated with "Yes")
The Parse JSON action has an output like so:
{
"@odata.context": "https://analytics.dev.azure.com/[ORGName]/[ProjectName]/_odata/v3.0-preview/$metadata#WorkItems(WorkItemId,Descendants(Count,DescendantCount))",
"vsts.warnings@odata.type": "#Collection(String)",
"@vsts.warnings": [
"VS403508: Using the Parent, Children, Descendants or Revision properties in a filter or expand is not recommended. Details on recommended query patterns are available here: https://go.microsoft.com/fwlink/?linkid=861060."
],
"value": [
{
"WorkItemId": 1004599,
"Descendants": []
}
]
}
But I can't seem to create a condition where it handles this null/empty value...any tips? (flow attached)