Hi Community,
I need some help with a flow of mine. The goal is to compare a files data in 2 separate branches to find the differences.
The flow works in parallel and runs the same operation from 2 separate branches in git in the same flow. in 'branch#1'
Note - there are definitely differences between the branches
OUTPUT of both arrays (after using append to array & Initialise Variable to break the data out of a loop)
Branch#1
{
"Flag": "Text#1",
"Status": "Text#2",
"Branch": "SOURCE"
}
Branch#2
{
"Flag": "Text#1",
"Status": "Text#2",
"Branch": "TARGET"
}
Both branches 'Flag' value should be the same, but the 'Status' can change from either 'Y' or 'N'.
The scenario is I need to return the Flag, Status & Branch value for each item that has the same Flag name, but the Status in Branch#1'(SOURCE) is different from 'Branch#2'(TARGET)
I've tried allsorts of exceptions combinations to return the just the differences but I'm getting no where.
Any help in bridging this gap would be amazing