mirror of
https://github.com/datahub-project/datahub.git
synced 2025-08-05 07:47:56 +00:00
122 lines
2.8 KiB
GraphQL
122 lines
2.8 KiB
GraphQL
query getChart($urn: String!) {
|
|
chart(urn: $urn) {
|
|
urn
|
|
type
|
|
exists
|
|
lastIngested
|
|
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
|
|
}
|
|
...entityDataProduct
|
|
deprecation {
|
|
...deprecationFields
|
|
}
|
|
embed {
|
|
...embedFields
|
|
}
|
|
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
|
|
}
|
|
status {
|
|
removed
|
|
}
|
|
dataPlatformInstance {
|
|
...dataPlatformInstanceFields
|
|
}
|
|
browsePathV2 {
|
|
...browsePathV2Fields
|
|
}
|
|
statsSummary {
|
|
viewCount
|
|
uniqueUserCountLast30Days
|
|
topUsersLast30Days {
|
|
urn
|
|
type
|
|
username
|
|
properties {
|
|
displayName
|
|
firstName
|
|
lastName
|
|
fullName
|
|
}
|
|
editableProperties {
|
|
displayName
|
|
pictureLink
|
|
}
|
|
}
|
|
}
|
|
inputFields {
|
|
...inputFieldsFields
|
|
}
|
|
privileges {
|
|
canEditLineage
|
|
canEditEmbed
|
|
}
|
|
subTypes {
|
|
typeNames
|
|
}
|
|
autoRenderAspects: aspects(input: { autoRenderOnly: true }) {
|
|
...autoRenderAspectFields
|
|
}
|
|
structuredProperties {
|
|
properties {
|
|
...structuredPropertiesFields
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
mutation updateChart($urn: String!, $input: ChartUpdateInput!) {
|
|
updateChart(urn: $urn, input: $input) {
|
|
urn
|
|
}
|
|
}
|