mirror of
https://github.com/datahub-project/datahub.git
synced 2025-09-14 11:41:37 +00:00

Co-authored-by: Dexter Lee <dexter@acryl.io> Co-authored-by: Brian <brianwebtek@gmail.com> Co-authored-by: John Joyce <john@acryl.io> Co-authored-by: Harshal Sheth <hsheth2@gmail.com>
132 lines
2.9 KiB
GraphQL
132 lines
2.9 KiB
GraphQL
query getChart($urn: String!) {
|
|
chart(urn: $urn) {
|
|
urn
|
|
type
|
|
tool
|
|
chartId
|
|
info {
|
|
name
|
|
description
|
|
inputs {
|
|
urn
|
|
name
|
|
origin
|
|
description
|
|
platform {
|
|
name
|
|
info {
|
|
logoUrl
|
|
}
|
|
}
|
|
platformNativeType
|
|
tags
|
|
ownership {
|
|
...ownershipFields
|
|
}
|
|
downstreamLineage {
|
|
...downstreamRelationshipFields
|
|
}
|
|
upstreamLineage {
|
|
...upstreamRelationshipFields
|
|
}
|
|
}
|
|
externalUrl
|
|
type
|
|
access
|
|
lastRefreshed
|
|
lastModified {
|
|
time
|
|
}
|
|
created {
|
|
time
|
|
}
|
|
customProperties {
|
|
key
|
|
value
|
|
}
|
|
}
|
|
query {
|
|
rawQuery
|
|
type
|
|
}
|
|
ownership {
|
|
...ownershipFields
|
|
}
|
|
globalTags {
|
|
...globalTagsFields
|
|
}
|
|
downstreamLineage {
|
|
...downstreamRelationshipFields
|
|
}
|
|
upstreamLineage {
|
|
...upstreamRelationshipFields
|
|
}
|
|
}
|
|
}
|
|
|
|
mutation updateChart($input: ChartUpdateInput!) {
|
|
updateChart(input: $input) {
|
|
urn
|
|
type
|
|
tool
|
|
chartId
|
|
info {
|
|
name
|
|
description
|
|
inputs {
|
|
urn
|
|
name
|
|
origin
|
|
description
|
|
platform {
|
|
name
|
|
info {
|
|
logoUrl
|
|
}
|
|
}
|
|
platformNativeType
|
|
tags
|
|
ownership {
|
|
...ownershipFields
|
|
}
|
|
downstreamLineage {
|
|
...downstreamRelationshipFields
|
|
}
|
|
upstreamLineage {
|
|
...upstreamRelationshipFields
|
|
}
|
|
}
|
|
externalUrl
|
|
type
|
|
access
|
|
lastRefreshed
|
|
lastModified {
|
|
time
|
|
}
|
|
created {
|
|
time
|
|
}
|
|
customProperties {
|
|
key
|
|
value
|
|
}
|
|
}
|
|
query {
|
|
rawQuery
|
|
type
|
|
}
|
|
ownership {
|
|
...ownershipFields
|
|
}
|
|
globalTags {
|
|
...globalTagsFields
|
|
}
|
|
downstreamLineage {
|
|
...downstreamRelationshipFields
|
|
}
|
|
upstreamLineage {
|
|
...upstreamRelationshipFields
|
|
}
|
|
}
|
|
}
|