2021-02-18 12:33:17 -08:00
|
|
|
query getDashboard($urn: String!) {
|
|
|
|
dashboard(urn: $urn) {
|
2021-04-23 00:18:39 -07:00
|
|
|
...dashboardFields
|
|
|
|
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
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
mutation updateDashboard($input: DashboardUpdateInput!) {
|
|
|
|
updateDashboard(input: $input) {
|
2021-04-23 00:18:39 -07:00
|
|
|
...dashboardFields
|
|
|
|
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
|
|
|
}
|
|
|
|
}
|