https://dagster.io/ logo
#dagster-support
Title
# dagster-support
d

DK

06/23/2022, 12:56 PM
I am trying to expose a config_schema for a graph, but it doesn't work the way config_schema works for op's. I tried using "config" in the graph definition, but not sure how to apply it (especially how to use the config_fn argument to map to the ops). Also, how do I access the config values in the graph itself? I tried supplying the "context" argument, but that error out as a reserved term.
🤖 1
s

sandy

06/24/2022, 12:23 AM
Hi DK - take a look at the second example under this heading: https://docs.dagster.io/concepts/ops-jobs-graphs/nesting-graphs#configuration-mapping. Does that help with what you're trying to accomplish?
d

DK

06/24/2022, 12:26 AM
yes! this looks like it will work. thank you!