Hi I am using graphiQL to query glossary node and...
# troubleshoot
j
Hi I am using graphiQL to query glossary node and show data in this glossary node but i need to show more. I need to show related entities of dataset and field each glossaryterm. it possible to call?. please advice me.
Copy code
query {
    glossaryNode(urn: "urn:li:glossaryNode:184d95df-a2b5-4479-a1b3-2cbd952a4325") {
        children: relationships(
            input: {
                types: ["IsPartOf"]
                direction: INCOMING
                start: 0
                count: 1000
            }
        ) {
            relationships {
                entity {
                    urn
                    type
                    ... on GlossaryTerm {
                        properties {
                            name
                        }
                        < I need to show related entities of dataset and field each glossaryterm >
                    }
										
                }
            }
        }
    }
}
e
Hey @jolly-traffic-67085 you should actually using the
searchAcrossEntities
GraphQL endpoint to find related entities
a query like
"glossaryTerms:\"Classification.Sensitive\"
would help you find entities that are related to that glossary term
j
@echoing-airport-49548 can you give me some example, thank you.