mirror of
https://github.com/datahub-project/datahub.git
synced 2025-08-21 23:58:06 +00:00
24 lines
715 B
GraphQL
24 lines
715 B
GraphQL
query getDashboard($urn: String!) {
|
|
dashboard(urn: $urn) {
|
|
...dashboardFields
|
|
editableProperties {
|
|
description
|
|
}
|
|
charts: relationships(input: { types: ["Contains"], direction: OUTGOING, start: 0, count: 100 }) {
|
|
...fullRelationshipResults
|
|
}
|
|
upstream: lineage(input: { direction: UPSTREAM, start: 0, count: 100 }) {
|
|
...fullLineageResults
|
|
}
|
|
downstream: lineage(input: { direction: DOWNSTREAM, start: 0, count: 100 }) {
|
|
...fullLineageResults
|
|
}
|
|
}
|
|
}
|
|
|
|
mutation updateDashboard($urn: String!, $input: DashboardUpdateInput!) {
|
|
updateDashboard(urn: $urn, input: $input) {
|
|
urn
|
|
}
|
|
}
|