2021-02-18 12:33:17 -08:00
|
|
|
query getDashboard($urn: String!) {
|
|
|
|
|
dashboard(urn: $urn) {
|
2021-04-23 00:18:39 -07:00
|
|
|
...dashboardFields
|
2021-06-17 06:48:27 +08:00
|
|
|
editableProperties {
|
|
|
|
|
description
|
|
|
|
|
}
|
2021-04-23 00:18:39 -07:00
|
|
|
downstreamLineage {
|
|
|
|
|
...downstreamRelationshipFields
|
2021-03-18 11:52:14 -07:00
|
|
|
}
|
2021-04-23 00:18:39 -07:00
|
|
|
upstreamLineage {
|
|
|
|
|
...upstreamRelationshipFields
|
2021-03-18 11:52:14 -07:00
|
|
|
}
|
2021-09-28 10:30:37 -07:00
|
|
|
charts: relationships(input: { types: ["Contains"], direction: OUTGOING, start: 0, count: 100 }) {
|
|
|
|
|
start
|
|
|
|
|
count
|
|
|
|
|
total
|
|
|
|
|
relationships {
|
|
|
|
|
entity {
|
|
|
|
|
... on Chart {
|
|
|
|
|
urn
|
|
|
|
|
type
|
|
|
|
|
tool
|
|
|
|
|
info {
|
|
|
|
|
name
|
|
|
|
|
description
|
|
|
|
|
}
|
|
|
|
|
ownership {
|
|
|
|
|
...ownershipFields
|
|
|
|
|
}
|
|
|
|
|
globalTags {
|
|
|
|
|
...globalTagsFields
|
|
|
|
|
}
|
|
|
|
|
glossaryTerms {
|
|
|
|
|
...glossaryTerms
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
2021-03-18 11:52:14 -07:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2021-09-22 17:30:15 -07:00
|
|
|
mutation updateDashboard($urn: String!, $input: DashboardUpdateInput!) {
|
|
|
|
|
updateDashboard(urn: $urn, input: $input) {
|
2021-04-23 00:18:39 -07:00
|
|
|
...dashboardFields
|
2021-06-17 06:48:27 +08:00
|
|
|
editableProperties {
|
|
|
|
|
description
|
|
|
|
|
}
|
2021-04-23 00:18:39 -07:00
|
|
|
downstreamLineage {
|
|
|
|
|
...downstreamRelationshipFields
|
2021-02-18 12:33:17 -08:00
|
|
|
}
|
2021-04-23 00:18:39 -07:00
|
|
|
upstreamLineage {
|
|
|
|
|
...upstreamRelationshipFields
|
2021-03-07 11:26:47 -08:00
|
|
|
}
|
2021-02-18 12:33:17 -08:00
|
|
|
}
|
|
|
|
|
}
|