You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Insert the filter array action as described in bug description. According to my experience this happens with at least contains and equals when preceded with "not".
Save the workflow. Issue occurs with most, but not every save.
Describe the Bug
Azure Logic Apps editor repeatedly autocorrects a filter array action from:
{
"type": "Query",
"inputs": {
"from": "@variables('someArrayVariable')",
"where": "@Not(contains(body('someSelectAction'),item()?['someId']))"
}
}
to
{
"type": "Query",
"inputs": {
"from": "@variables('someArrayVariable')",
"where": "@Not(notcontains(body('someSelectAction'),item()?['someId']))"
}
}
Plan Type
Standard
Steps to Reproduce the Bug or Issue
Workflow JSON
Screenshots or Videos
No response
Additional context
Happens within a workflow in a Standard logic app.
The text was updated successfully, but these errors were encountered: