mirror of
https://github.com/datahub-project/datahub.git
synced 2025-07-21 16:42:16 +00:00
18 lines
554 B
GraphQL
18 lines
554 B
GraphQL
query getDashboard($urn: String!) {
|
|
dashboard(urn: $urn) {
|
|
...dashboardFields
|
|
charts: relationships(input: { types: ["Contains"], direction: OUTGOING, start: 0, count: 100 }) {
|
|
...fullRelationshipResults
|
|
}
|
|
datasets: relationships(input: { types: ["Consumes"], direction: OUTGOING, start: 0, count: 100 }) {
|
|
...fullRelationshipResults
|
|
}
|
|
}
|
|
}
|
|
|
|
mutation updateDashboard($urn: String!, $input: DashboardUpdateInput!) {
|
|
updateDashboard(urn: $urn, input: $input) {
|
|
urn
|
|
}
|
|
}
|