https://dagster.io/ logo
#ask-community
Title
# ask-community
v

VxD

06/15/2022, 11:19 PM
Hi there! Small graph-related design question: I have a graph that I want to use both as a top-level graph (with
to_job
) and a subgraph. Since it needs to be used as a subgraph, the graph takes a few arguments as input. What is the correct way (if any) to start this graph as a top-level job from the daemon in a
RunRequest
? Can I pass top-level arguments to the graph from the daemon?
c

claire

06/15/2022, 11:24 PM
Hi VxD. Yes, you can either pass in run config to your
RunRequest
containing the unconnected inputs, or use a root input manager: https://docs.dagster.io/concepts/io-management/unconnected-inputs#unconnected-inputs
v

VxD

06/15/2022, 11:25 PM
Oh excellent, thanks Claire! This is exactly what I needed! ❤️ Dagster never ceases to deliver!
❤️ 1