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-09-28 10:30:37 -07:00
|
|
|
charts: relationships(input: { types: ["Contains"], direction: OUTGOING, start: 0, count: 100 }) {
|
2021-10-22 15:46:46 -07:00
|
|
|
...fullRelationshipResults
|
2021-09-28 10:30:37 -07:00
|
|
|
}
|
2022-03-04 16:10:25 -08:00
|
|
|
upstream: lineage(input: { direction: UPSTREAM, start: 0, count: 100 }) {
|
|
|
|
...fullLineageResults
|
|
|
|
}
|
|
|
|
downstream: lineage(input: { direction: DOWNSTREAM, start: 0, count: 100 }) {
|
|
|
|
...fullLineageResults
|
|
|
|
}
|
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-10-22 15:46:46 -07:00
|
|
|
urn
|
2021-02-18 12:33:17 -08:00
|
|
|
}
|
|
|
|
}
|