- Hello, I was hoping to get some help on assigni...
# integration-dbt
e
• Hello, I was hoping to get some help on assigning groups to dbt assets. The following is described in the docs: • node_info_to_group_fn (Dict[str, Any] -> Optional[str]) – [Deprecated] A function that takes a dictionary of dbt node info and returns the group that this node should be assigned to. Deprecated: instead, configure dagster groups on a dbt resource’s meta field or assign dbt groups. Is there any additional docs or information on how to configure dagster groups on a dbt resource's meta field? Any help or breadcrumbs would be appreciated.
dagster bot responded by community 1
t
Hello Eric, you can use the meta field of your dbt models to define dagster's group. In our project, we added something like that in `dbt_project.yml`:
Copy code
models:
  our_target:
    our_layer:
      +meta:
        dagster:
          group: asset_group
e
Thank you! I will give that a try. Much appreciated.
👍 1