Hello Dagster Community. I have a question that ...
# ask-community
r
Hello Dagster Community. I have a question that I would love your help with. How can I combine different jobs and graphs full of op’s inside an asset? Also, how can I call these different operations from a single
repository.py
file? I have struggled a bit to connect the dots from the documentation and know this can certainly be or is a lack of understanding of the tool 🥲 This question might have been answered before so please forgive me if it has and I would appreciate it if you could kindly point in the right direction. Thanks 🙏🏻
c
You can just point your workspace at a single repository file: https://docs.dagster.io/concepts/repositories-workspaces/workspaces#loading-just-one-repository You can't put a job inside an asset, but you can create an asset from a graph of ops using graph-backed assets
r
Thanks @chris 🙂