-
|
Hi Dagster Team, Is it possible to add @repository(name="my_repo_name"):
return [......]Is it possible to do something like this? Definition(name="my_repo_name", assets=[......])Will Thanks. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
|
Hi, it is not possible because the
Yes. You should switch to |
Beta Was this translation helpful? Give feedback.
Hi, it is not possible because the
nameargument of@repositorywas designed for distinguishing multiple repositories within a code location, but there can be only oneDefinitionsper code location. This always receives a default name.Yes. You should switch to
Definitionsif possible.