mirror of
https://github.com/datahub-project/datahub.git
synced 2025-08-06 00:08:09 +00:00

* add graphql for chart glossary terms * add placeholder tab component * continued progress * finished rendering of other tooltips * fix tests * add null check * force more clicks * fix analytics test
105 lines
2.5 KiB
GraphQL
105 lines
2.5 KiB
GraphQL
query getChart($urn: String!) {
|
|
chart(urn: $urn) {
|
|
urn
|
|
type
|
|
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
|
|
}
|
|
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
|
|
}
|
|
statsSummary {
|
|
viewCount
|
|
uniqueUserCountLast30Days
|
|
topUsersLast30Days {
|
|
urn
|
|
type
|
|
username
|
|
properties {
|
|
displayName
|
|
firstName
|
|
lastName
|
|
fullName
|
|
}
|
|
editableProperties {
|
|
displayName
|
|
pictureLink
|
|
}
|
|
}
|
|
}
|
|
inputFields {
|
|
...inputFieldsFields
|
|
}
|
|
}
|
|
}
|
|
|
|
mutation updateChart($urn: String!, $input: ChartUpdateInput!) {
|
|
updateChart(urn: $urn, input: $input) {
|
|
urn
|
|
}
|
|
}
|