To get Data Lineage edges and to get sources metadata I used graphQL query:
query lineage {
workbooks {
name
luid
embeddedDatasources {
id
name
upstreamTablesConnection {
nodes {
database {
name
}
name
schema
connectionType
}
}
}
}
}
getting upstreamTablesConnection
list with None
values in name
, schema
, database
fields.
Tried this query, using upstreamTables
entity:
query lineage {
workbooks {
name
luid
embeddedDatasources {
id
name
upstreamTables { name id schema database {name} }
}
}
}
getting actual id's but the FQN parts are is still None's.
Important thing is: project, dataset and table name are visible in UI when clicking on source -> Properties, but via API no such data.
what am I doing wrong here?