When we have some variables in context like:
{ "a": { "x": "x", "y": "y" }, "z": "z" }
and input mapping of the worker like: z -> a.x
, we get worker context:
{ "a": {"x":"z"} }
.
But I need:
{ "a":{"x":"z","y":"y"} }
.
And I don’t want to list all nested fields of a in mapping.
I have also tried mapping a -> a; z -> a.x
, it didn’t help.
Is there any way to get the behaviour that I need?