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
|
2023-01-27 17:36:01 -05:00
|
|
|
exists
|
2022-08-11 20:27:16 -04:00
|
|
|
lastIngested
|
2021-03-18 11:52:14 -07:00
|
|
|
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 {
|
2022-02-02 13:51:39 -08:00
|
|
|
...institutionalMemoryFields
|
2021-09-28 10:30:37 -07:00
|
|
|
}
|
|
|
|
glossaryTerms {
|
|
|
|
...glossaryTerms
|
|
|
|
}
|
2022-01-27 22:02:41 -08:00
|
|
|
domain {
|
|
|
|
...entityDomain
|
|
|
|
}
|
2023-05-17 00:17:25 -07:00
|
|
|
...entityDataProduct
|
2022-04-07 19:17:24 -07:00
|
|
|
deprecation {
|
|
|
|
...deprecationFields
|
|
|
|
}
|
2023-01-03 15:40:39 -08:00
|
|
|
embed {
|
|
|
|
...embedFields
|
|
|
|
}
|
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
|
|
|
}
|
2022-05-13 00:17:19 -04:00
|
|
|
parentContainers {
|
|
|
|
...parentContainersFields
|
|
|
|
}
|
2022-03-15 11:17:13 -07:00
|
|
|
status {
|
|
|
|
removed
|
|
|
|
}
|
2022-05-09 17:28:50 -04:00
|
|
|
dataPlatformInstance {
|
|
|
|
...dataPlatformInstanceFields
|
|
|
|
}
|
2022-07-22 15:19:04 -07:00
|
|
|
statsSummary {
|
|
|
|
viewCount
|
|
|
|
uniqueUserCountLast30Days
|
|
|
|
topUsersLast30Days {
|
|
|
|
urn
|
|
|
|
type
|
|
|
|
username
|
|
|
|
properties {
|
|
|
|
displayName
|
|
|
|
firstName
|
|
|
|
lastName
|
|
|
|
fullName
|
|
|
|
}
|
|
|
|
editableProperties {
|
|
|
|
displayName
|
|
|
|
pictureLink
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2022-08-31 20:48:32 -07:00
|
|
|
inputFields {
|
|
|
|
...inputFieldsFields
|
|
|
|
}
|
2022-12-20 10:54:08 -05:00
|
|
|
privileges {
|
|
|
|
canEditLineage
|
2023-01-03 15:40:39 -08:00
|
|
|
canEditEmbed
|
2022-12-20 10:54:08 -05: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
|
|
|
|
}
|
|
|
|
}
|