context merge
FEEL built-in function · Context functions
context merge(contexts)
Combines a list of contexts into one; later entries overwrite earlier ones with the same key.
Parameters
| Parameter | Type | Description |
|---|---|---|
| contexts | list of contexts | the contexts to combine, in order |
Examples
context merge([{x: 1}, {y: 2}, {x: 3}])
{x=3, y=2}
Try it →
Related functions
Defined by the OMG DMN 1.6 specification, chapter 10.3.4 (built-in functions).