best-pilot-37106
10/25/2022, 6:18 PMsearch and this returns everything as expected except the glossaryTerms on a field which it returns null. Has anyone seen this issue before? Query and schema pictures in thread:best-pilot-37106
10/25/2022, 6:21 PMquery my_search($input: SearchInput!) {
search(input: $input) {
start
count
total
searchResults {
entity {
...dataset
}
}
}
}
fragment dataset on Dataset {
type
schemaMetadata {
fields{
...fields
}
}
properties {
...datasetProperties
}
}
fragment fields on SchemaField {
fieldPath
label
description
tags {
...globalTags
}
glossaryTerms {
...glossaryTerms
}
}
fragment globalTags on GlobalTags {
tags {
tag {
properties {
name
description
}
}
}
}
fragment glossaryTerms on GlossaryTerms {
terms {
term {
urn
hierarchicalName
properties {
name
description
customProperties {
key
value
}
}
}
}
}
{"input": {
"type": "DATASET",
"start": 0,
"count": 3000,
"query": "SampleKafkaDataset"
}
}best-pilot-37106
10/25/2022, 6:24 PM"searchResults": [
{
"entity": {
"type": "DATASET",
"schemaMetadata": {
"fields": [
{
"fieldPath": "[version=2.0].[type=boolean].field_foo_2",
"label": null,
"description": "Foo field description",
"tags": {
"tags": [
{
"tag": {
"properties": {
"name": "NeedsDocumentation",
"description": "Indicates the data element needs documentation"
}
}
}
]
},
"glossaryTerms": null
},
{
"fieldPath": "[version=2.0].[type=boolean].field_bar",
"label": null,
"description": "Bar field description",
"tags": null,
"glossaryTerms": null
},
{
"fieldPath": "[version=2.0].[key=True].[type=int].id",
"label": null,
"description": "Id specifying which partition the message should go to",
"tags": null,
"glossaryTerms": null
}
]
},
"properties": {
"name": "SampleKafkaDataset",
"description": null,
"customProperties": [
{
"key": "prop2",
"value": "pikachu"
},
{
"key": "prop1",
"value": "fakeprop"
}
]
}
}
}
]best-pilot-37106
10/25/2022, 6:25 PMbest-pilot-37106
10/25/2022, 7:58 PMechoing-airport-49548
10/25/2022, 10:29 PMechoing-airport-49548
10/25/2022, 10:29 PM