2025-01-29 20:42:01 -05:00
|
|
|
query getSchemaField($urn: String!) {
|
|
|
|
|
entity(urn: $urn) {
|
|
|
|
|
urn
|
|
|
|
|
type
|
|
|
|
|
... on SchemaFieldEntity {
|
|
|
|
|
...schemaFieldEntityFields
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
fragment schemaFieldEntityFields on SchemaFieldEntity {
|
|
|
|
|
urn
|
|
|
|
|
fieldPath
|
|
|
|
|
type
|
|
|
|
|
structuredProperties {
|
|
|
|
|
properties {
|
|
|
|
|
...structuredPropertiesFields
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
businessAttributes {
|
|
|
|
|
businessAttribute {
|
|
|
|
|
...businessAttribute
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
documentation {
|
|
|
|
|
...documentationFields
|
|
|
|
|
}
|
2025-08-29 11:18:47 -07:00
|
|
|
tags {
|
|
|
|
|
...globalTagsFields
|
|
|
|
|
}
|
|
|
|
|
glossaryTerms {
|
|
|
|
|
...glossaryTerms
|
|
|
|
|
}
|
2025-01-29 20:42:01 -05:00
|
|
|
parent {
|
|
|
|
|
urn
|
|
|
|
|
type
|
|
|
|
|
...entityDisplayNameFields
|
|
|
|
|
... on Dataset {
|
|
|
|
|
platform {
|
|
|
|
|
...platformFields
|
|
|
|
|
}
|
|
|
|
|
subTypes {
|
|
|
|
|
typeNames
|
|
|
|
|
}
|
|
|
|
|
privileges {
|
|
|
|
|
...entityPrivileges
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
... on Dashboard {
|
|
|
|
|
platform {
|
|
|
|
|
...platformFields
|
|
|
|
|
}
|
|
|
|
|
subTypes {
|
|
|
|
|
typeNames
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
... on Chart {
|
|
|
|
|
platform {
|
|
|
|
|
...platformFields
|
|
|
|
|
}
|
|
|
|
|
subTypes {
|
|
|
|
|
typeNames
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
...notes
|
|
|
|
|
}
|