mirror of
https://github.com/datahub-project/datahub.git
synced 2025-07-23 09:32:04 +00:00
30 lines
757 B
GraphQL
30 lines
757 B
GraphQL
query getVersionedDataset($urn: String!, $versionStamp: String) {
|
|
versionedDataset(urn: $urn, versionStamp: $versionStamp) {
|
|
schema {
|
|
fields {
|
|
fieldPath
|
|
jsonPath
|
|
nullable
|
|
description
|
|
type
|
|
nativeDataType
|
|
recursive
|
|
isPartOfKey
|
|
}
|
|
lastObserved
|
|
}
|
|
editableSchemaMetadata {
|
|
editableSchemaFieldInfo {
|
|
fieldPath
|
|
description
|
|
globalTags {
|
|
...globalTagsFields
|
|
}
|
|
glossaryTerms {
|
|
...glossaryTerms
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|