Question
Is it possible to have node colouring on specific analysis and test nodes within the data catalog?
Referring to custom node colour documentation, only examples using models are used.
Is it possible to have node colouring on specific analysis and test nodes within the data catalog?
Referring to custom node colour documentation, only examples using models are used.
dbt_project.yaml has access to test_configs, thus can be set at project level.
However analysis configs can’t be set at project level, thus set at schema level.
# dbt_project.yaml
tests:
+docs:
node_color: "#CC365D"
# analysis/schema.yaml
version: 2
analyses:
- name: analysis_name
docs:
node_color: "gold"
This topic was automatically closed 7 days after the last reply. New replies are no longer allowed.