Passing Configuration to Sub Graph with Send #1790
-
Is there any way to pass the configuration from a parent main graph to a sub graph which is a node of the main graph ? Especially with the Send API for map reduce ? |
Beta Was this translation helpful? Give feedback.
Answered by
nfcampos
Sep 21, 2024
Replies: 1 comment
-
Hi, configuration is passed down to all nodes and subgraphs, whether you use Send or edges. You can access it in any node with the |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
nfcampos
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hi, configuration is passed down to all nodes and subgraphs, whether you use Send or edges. You can access it in any node with the
config
argument.