We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a7c222a commit 7962f1cCopy full SHA for 7962f1c
analyze_impact.py
@@ -104,6 +104,9 @@ def get_linked_columns(
104
).get('path') or tabular_entity.get('name') or '???'
105
entity_type = tabular_entity['__typename']
106
107
+ if tableau_project_name := tabular_entity.get('projectName'):
108
+ name = f'[i]{tableau_project_name}[/i]/{name}'
109
+
110
rich.print(f'[purple]{entity_type}[/purple] [green]{name}[/green]')
111
112
for col in tabular_entity.get('columns', []):
queries/lineage_analyze_impact.gql
@@ -86,6 +86,10 @@ query GetLineageByUID(
86
}
87
88
89
+ ...on DataAppTableauWorkbook {
90
+ projectName
91
+ }
92
93
...on BiDashboard {
94
uid
95
name
0 commit comments