2021-02-18 12:33:17 -08:00
|
|
|
query getChart($urn: String!) {
|
|
|
|
chart(urn: $urn) {
|
2021-03-18 11:52:14 -07:00
|
|
|
urn
|
|
|
|
type
|
|
|
|
tool
|
|
|
|
chartId
|
2022-01-25 21:03:31 -06:00
|
|
|
platform {
|
|
|
|
...platformFields
|
|
|
|
}
|
2021-11-08 16:24:50 -08:00
|
|
|
properties {
|
2021-03-18 11:52:14 -07:00
|
|
|
name
|
|
|
|
description
|
2021-04-23 00:18:39 -07:00
|
|
|
externalUrl
|
2021-03-18 11:52:14 -07:00
|
|
|
type
|
|
|
|
access
|
|
|
|
lastRefreshed
|
|
|
|
lastModified {
|
|
|
|
time
|
|
|
|
}
|
|
|
|
created {
|
|
|
|
time
|
|
|
|
}
|
2021-04-23 00:18:39 -07:00
|
|
|
customProperties {
|
|
|
|
key
|
|
|
|
value
|
|
|
|
}
|
2021-03-18 11:52:14 -07:00
|
|
|
}
|
|
|
|
query {
|
|
|
|
rawQuery
|
|
|
|
type
|
|
|
|
}
|
|
|
|
ownership {
|
2021-04-21 12:06:31 -07:00
|
|
|
...ownershipFields
|
2021-03-18 11:52:14 -07:00
|
|
|
}
|
|
|
|
globalTags {
|
2021-04-21 12:06:31 -07:00
|
|
|
...globalTagsFields
|
2021-03-18 11:52:14 -07:00
|
|
|
}
|
2021-06-17 06:48:27 +08:00
|
|
|
editableProperties {
|
|
|
|
description
|
|
|
|
}
|
2021-09-28 10:30:37 -07:00
|
|
|
institutionalMemory {
|
|
|
|
elements {
|
|
|
|
url
|
|
|
|
author {
|
|
|
|
urn
|
|
|
|
username
|
|
|
|
}
|
|
|
|
label
|
|
|
|
created {
|
|
|
|
time
|
|
|
|
actor
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
glossaryTerms {
|
|
|
|
...glossaryTerms
|
|
|
|
}
|
2022-01-27 22:02:41 -08:00
|
|
|
domain {
|
|
|
|
...entityDomain
|
|
|
|
}
|
2021-09-28 10:30:37 -07:00
|
|
|
inputs: relationships(input: { types: ["Consumes"], direction: OUTGOING, start: 0, count: 100 }) {
|
2021-10-22 15:46:46 -07:00
|
|
|
...fullRelationshipResults
|
2021-09-28 10:30:37 -07:00
|
|
|
}
|
|
|
|
dashboards: relationships(input: { types: ["Contains"], direction: INCOMING, start: 0, count: 100 }) {
|
2021-10-22 15:46:46 -07:00
|
|
|
...fullRelationshipResults
|
2021-09-28 10:30:37 -07:00
|
|
|
}
|
2021-03-18 11:52:14 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-09-22 17:30:15 -07:00
|
|
|
mutation updateChart($urn: String!, $input: ChartUpdateInput!) {
|
|
|
|
updateChart(urn: $urn, input: $input) {
|
2021-02-18 12:33:17 -08:00
|
|
|
urn
|
|
|
|
}
|
|
|
|
}
|