2021-02-09 14:30:23 -08:00
|
|
|
mutation updateDataset($input: DatasetUpdateInput!) {
|
|
|
|
updateDataset(input: $input) {
|
2021-02-10 14:19:27 -08:00
|
|
|
...nonRecursiveDatasetFields
|
2021-04-23 00:18:39 -07:00
|
|
|
downstreamLineage {
|
|
|
|
...downstreamRelationshipFields
|
|
|
|
}
|
|
|
|
upstreamLineage {
|
|
|
|
...upstreamRelationshipFields
|
|
|
|
}
|
2021-02-10 14:19:27 -08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
query getDataset($urn: String!) {
|
|
|
|
dataset(urn: $urn) {
|
2021-03-07 11:26:47 -08:00
|
|
|
urn
|
|
|
|
name
|
|
|
|
type
|
|
|
|
origin
|
|
|
|
description
|
|
|
|
uri
|
|
|
|
platform {
|
|
|
|
name
|
2021-04-09 01:24:33 +08:00
|
|
|
info {
|
|
|
|
logoUrl
|
|
|
|
}
|
2021-03-07 11:26:47 -08:00
|
|
|
}
|
|
|
|
platformNativeType
|
|
|
|
tags
|
|
|
|
properties {
|
|
|
|
key
|
|
|
|
value
|
|
|
|
}
|
2021-06-17 06:48:27 +08:00
|
|
|
editableProperties {
|
|
|
|
description
|
|
|
|
}
|
2021-03-07 11:26:47 -08:00
|
|
|
ownership {
|
2021-04-21 12:06:31 -07:00
|
|
|
...ownershipFields
|
2021-03-07 11:26:47 -08:00
|
|
|
}
|
|
|
|
institutionalMemory {
|
|
|
|
elements {
|
|
|
|
url
|
2021-06-03 23:40:03 +05:30
|
|
|
author {
|
|
|
|
urn
|
|
|
|
username
|
|
|
|
}
|
2021-03-07 11:26:47 -08:00
|
|
|
description
|
|
|
|
created {
|
|
|
|
actor
|
|
|
|
time
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
schema {
|
|
|
|
datasetUrn
|
|
|
|
name
|
|
|
|
platformUrn
|
|
|
|
version
|
|
|
|
hash
|
|
|
|
platformSchema {
|
|
|
|
... on TableSchema {
|
|
|
|
schema
|
|
|
|
}
|
|
|
|
... on KeyValueSchema {
|
|
|
|
keySchema
|
|
|
|
valueSchema
|
|
|
|
}
|
|
|
|
}
|
|
|
|
fields {
|
|
|
|
fieldPath
|
|
|
|
jsonPath
|
|
|
|
nullable
|
|
|
|
description
|
|
|
|
type
|
|
|
|
nativeDataType
|
|
|
|
recursive
|
|
|
|
globalTags {
|
2021-04-21 12:06:31 -07:00
|
|
|
...globalTagsFields
|
2021-03-07 11:26:47 -08:00
|
|
|
}
|
2021-05-18 07:49:42 +05:30
|
|
|
glossaryTerms {
|
|
|
|
...glossaryTerms
|
|
|
|
}
|
2021-03-07 11:26:47 -08:00
|
|
|
}
|
|
|
|
primaryKeys
|
|
|
|
}
|
2021-03-18 11:52:14 -07:00
|
|
|
editableSchemaMetadata {
|
|
|
|
editableSchemaFieldInfo {
|
|
|
|
fieldPath
|
|
|
|
description
|
|
|
|
globalTags {
|
2021-04-21 12:06:31 -07:00
|
|
|
...globalTagsFields
|
2021-03-18 11:52:14 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2021-03-07 11:26:47 -08:00
|
|
|
deprecation {
|
|
|
|
actor
|
|
|
|
deprecated
|
|
|
|
note
|
|
|
|
decommissionTime
|
|
|
|
}
|
|
|
|
globalTags {
|
2021-04-21 12:06:31 -07:00
|
|
|
...globalTagsFields
|
2021-03-07 11:26:47 -08:00
|
|
|
}
|
2021-02-10 14:19:27 -08:00
|
|
|
downstreamLineage {
|
2021-04-23 00:18:39 -07:00
|
|
|
...downstreamRelationshipFields
|
|
|
|
}
|
2021-05-18 07:49:42 +05:30
|
|
|
glossaryTerms {
|
|
|
|
...glossaryTerms
|
|
|
|
}
|
2021-04-23 00:18:39 -07:00
|
|
|
upstreamLineage {
|
|
|
|
...upstreamRelationshipFields
|
2021-02-09 19:05:50 -08:00
|
|
|
}
|
2021-01-17 12:54:49 -08:00
|
|
|
}
|
|
|
|
}
|