Non ci sono articoli nel tuo carrello.
This workflow compares two lists of objects (List A and List B) using a user-specified key (e.g. email
, id
, domain
) and returns:
listA
: the first list of itemslistB
: the second list of itemskey
: the field name to use for comparisoncommon
: items with matching keys (only one version retained)onlyInA
: items found only in List AonlyInB
: items found only in List B{
"key": "email",
"listA": [
{ "email": "alice@example.com", "name": "Alice" },
{ "email": "bob@example.com", "name": "Bob" }
],
"listB": [
{ "email": "bob@example.com", "name": "Bobby" },
{ "email": "carol@example.com", "name": "Carol" }
]
}
common
: [ { "email": "bob@example.com", "name": "Bob" } ]
onlyInA
: [ { "email": "alice@example.com", "name": "Alice" } ]
onlyInB
: [ { "email": "carol@example.com", "name": "Carol" } ]
This workflow is useful for internal data auditing, list reconciliation, transaction reconciliation, or pre-processing sync jobs.