How to get parent workflow metadata?

Is there a way we can get parent workflow metadata / context property from a child workflow or activity?

Example workflow structure: parent workflow A → workflow B → workflow C: activity C1, activity C2.

From either workflow C or activity C1 or C2; I’m looking for a way to get workflow A’s property, can be either context propagator or memo, I can’t seem to find a way.
Appreciate any leads :pray:

I would recommend passing this data as arguments to the child from the parent.

Thank you for the suggestion, args can totally fit in but for long term development, I’d want to keep the list of args small.

Can this be done with ContextPropagator?

You can use a custom ContextPropagator. I personally prefer explicit arguments as they are less error prone.