In LAE X-ref, we could create a new field for left,match and right outputs. Could you please show me how to do that with the Merge node? I'm sure there's a way :)
output 1 {
emit 1:*, "In left only" as Result
where join.leftOrphan
}
output 2 {
emit *, "it matches" as Result
exclude referencedFields(2,{{^RightInputKey^}})
where join.match
}
output 3 {
emit 2:*, "only right" as Result
where join.rightOrphan
}