Hello everyone! Need help on graphql. I am planning to extract the table info and fields. But I want to get the glossary associated with the tables and columns. But when I am adding it to my graphql, its just showing null. Can someone help me?
Here is my query:
search(input: {type: DATASET, query: "db.schema.*", start: 0, count: 300}) {
start
count
total
searchResults {
entity {
urn
... on Dataset {
schemaMetadata(version: -1) {
name
platformUrn
version
fields {
fieldPath
label
jsonPath
nullable
description
type
nativeDataType
recursive
isPartOfKey
glossaryTerms {
... on GlossaryTerms {
terms {
term {
urn
}
}
}
}
}
primaryKeys
}
}
}
}
}
}```