List: Diff keys The “List: Diff keys” mapper compares keys from a list against the keys from another list and returns the difference.Documentation Index
Fetch the complete documentation index at: https://docs.alumio.com/llms.txt
Use this file to discover all available pages before exploring further.
Fields
Array
The list to compare againstSample data
| Input | Array | Output |
|---|---|---|
| {“name”: “ABC”, “price”: 19.95} | {“name”: “ABC”, “price”: 19.95} | {“price”: 19.95} |
| {“name”: “ABC”, “price”: 19.95} | {“name”: “ABC”, “price”: 20} | [] |
| {“name”: “ABC”, “price”: 19.95} | {“name”: “ABC”, “price”: 19.95} | [] |
| {“name”: “ABC”} | {“name”: “ABC”, “price”: 19.95} | [] |