datahub/datahub-web-react/src/graphql/dashboard.graphql

83 lines
1.6 KiB
GraphQL
Raw Normal View History

query getDashboard($urn: String!) {
dashboard(urn: $urn) {
urn
type
tool
dashboardId
info {
name
description
charts {
urn
tool
type
info {
name
description
inputs {
urn
}
}
ownership {
...ownershipFields
}
}
url
access
lastRefreshed
created {
time
}
lastModified {
time
}
}
ownership {
...ownershipFields
}
globalTags {
...globalTagsFields
}
}
}
mutation updateDashboard($input: DashboardUpdateInput!) {
updateDashboard(input: $input) {
urn
type
tool
dashboardId
info {
name
description
charts {
urn
tool
type
info {
name
description
}
ownership {
...ownershipFields
}
}
url
access
lastRefreshed
created {
time
}
lastModified {
time
}
}
ownership {
...ownershipFields
}
globalTags {
...globalTagsFields
}
}
}