I load assets using `load_assets_from_dbt_project`...
# integration-dbt
q
I load assets using
load_assets_from_dbt_project
and the assets ahve the key
project_name / table_name
. I have two questions: • How do I pass this type of asset key as an argument to another asset. eg
Copy code
@asset
def another_asset(context, project/table_name):
   .....
I know I can use
non_argument_deps
if I just want to show the dependency and not have it pass an argument to the
another_asset
. How do i do this in such a scenario • How can I load assets from my project and have the asset key simply be the names of the models. e.g
table_name
instead of prefixing with the model name?