mirror of
https://github.com/datahub-project/datahub.git
synced 2025-07-23 17:39:59 +00:00
29 lines
732 B
GraphQL
29 lines
732 B
GraphQL
![]() |
query getVersionedDataset($urn: String!, $versionStamp: String) {
|
||
|
versionedDataset(urn: $urn, versionStamp: $versionStamp) {
|
||
|
schema {
|
||
|
fields {
|
||
|
fieldPath
|
||
|
jsonPath
|
||
|
nullable
|
||
|
description
|
||
|
type
|
||
|
nativeDataType
|
||
|
recursive
|
||
|
isPartOfKey
|
||
|
}
|
||
|
}
|
||
|
editableSchemaMetadata {
|
||
|
editableSchemaFieldInfo {
|
||
|
fieldPath
|
||
|
description
|
||
|
globalTags {
|
||
|
...globalTagsFields
|
||
|
}
|
||
|
glossaryTerms {
|
||
|
...glossaryTerms
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|