Common keys extractor
Last updated
Last updated
[data/dictionary/Common keys extractor]
Calculates intersection of dictionaries received via a
and b
.
The intersection will include all keys that are present in both dictionaries, with values matching those from b
.
Example:
{"foo": 1, "bar": 2}@0 received via a
{"bar": 3, "baz": 4}@0 received via b
{"bar": 3}@0 sent via intersection
Keywords: extract, common, keys, fields, properties, intersection, dictionary, record, lookup, set
a: {string: any}
b: {string: any}
common keys: {string: any}