mirror of
https://github.com/datahub-project/datahub.git
synced 2025-08-06 08:18:08 +00:00
82 lines
1.9 KiB
GraphQL
82 lines
1.9 KiB
GraphQL
query getChart($urn: String!) {
|
|
chart(urn: $urn) {
|
|
urn
|
|
type
|
|
tool
|
|
chartId
|
|
platform {
|
|
...platformFields
|
|
}
|
|
properties {
|
|
name
|
|
description
|
|
externalUrl
|
|
type
|
|
access
|
|
lastRefreshed
|
|
lastModified {
|
|
time
|
|
}
|
|
created {
|
|
time
|
|
}
|
|
customProperties {
|
|
key
|
|
value
|
|
}
|
|
}
|
|
query {
|
|
rawQuery
|
|
type
|
|
}
|
|
ownership {
|
|
...ownershipFields
|
|
}
|
|
globalTags {
|
|
...globalTagsFields
|
|
}
|
|
editableProperties {
|
|
description
|
|
}
|
|
institutionalMemory {
|
|
...institutionalMemoryFields
|
|
}
|
|
glossaryTerms {
|
|
...glossaryTerms
|
|
}
|
|
domain {
|
|
...entityDomain
|
|
}
|
|
deprecation {
|
|
...deprecationFields
|
|
}
|
|
inputs: relationships(input: { types: ["Consumes"], direction: OUTGOING, start: 0, count: 100 }) {
|
|
...fullRelationshipResults
|
|
}
|
|
dashboards: relationships(input: { types: ["Contains"], direction: INCOMING, start: 0, count: 100 }) {
|
|
...fullRelationshipResults
|
|
}
|
|
parentContainers {
|
|
...parentContainersFields
|
|
}
|
|
upstream: lineage(input: { direction: UPSTREAM, start: 0, count: 100 }) {
|
|
...partialLineageResults
|
|
}
|
|
downstream: lineage(input: { direction: DOWNSTREAM, start: 0, count: 100 }) {
|
|
...partialLineageResults
|
|
}
|
|
status {
|
|
removed
|
|
}
|
|
dataPlatformInstance {
|
|
...dataPlatformInstanceFields
|
|
}
|
|
}
|
|
}
|
|
|
|
mutation updateChart($urn: String!, $input: ChartUpdateInput!) {
|
|
updateChart(urn: $urn, input: $input) {
|
|
urn
|
|
}
|
|
}
|