collection_merge
Merge two dictionaries into one, giving precedence to values from the second dictionary when keys conflict.
Instructions
Merge two dictionaries. Values from dict_b win on conflict.
Args: dict_a: The base dictionary. dict_b: The dictionary to merge in (wins on conflict).
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| dict_a | Yes | ||
| dict_b | Yes |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| result | Yes |