few-receptionist-67008
06/14/2022, 3:38 PMbulky-soccer-26729
06/14/2022, 3:46 PMbulky-soccer-26729
06/14/2022, 3:46 PMfew-receptionist-67008
06/14/2022, 6:32 PMfew-receptionist-67008
06/24/2022, 12:02 PMbulky-soccer-26729
06/24/2022, 12:15 PMfew-receptionist-67008
11/21/2022, 8:15 PMbulky-soccer-26729
11/21/2022, 9:13 PMfew-receptionist-67008
11/23/2022, 3:45 PMfew-receptionist-67008
01/11/2023, 11:16 PM# Nenad Dragojlović : this is displaying how you already fetch incoming IsA relationships
# but you just don't show it on UI of Related Terms Tab - qraphQL query is catched from
# Chrome when accesing Related Terms tab.
# It is shown for the Term 1.1. (urn:li:glossaryTerm:a6c0064e-8f76-4a06-aa12-661a43d3bf8f)
# Term 1.1.1 inherits Term 1.1 inherits Term 1
# It would be completely analogous addition for incoming HasA relationship as well
{
glossaryTerm(urn: "urn:li:glossaryTerm:a6c0064e-8f76-4a06-aa12-661a43d3bf8f") {
urn
type
hierarchicalName
properties {
name
description
}
isRelatedTerms:relationships (input: {types: ["IsA"], direction: OUTGOING, start: 0, count: 10})
{
start
count
total
relationships{
entity{
... on GlossaryTerm{
urn
properties {
name
}
__typename
}
__typename
}
__typename
}
__typename
}
isAChildren:relationships (input: {types: ["IsA"], direction: INCOMING, start: 0, count: 10})
{
start
count
total
relationships{
entity{
... on GlossaryTerm{
urn
properties {
name
}
__typename
}
__typename
}
__typename
}
__typename
}
hasRelatedTerms:relationships (input: {types: ["HasA"], direction: OUTGOING, start: 0, count: 10})
{
start
count
total
relationships{
entity{
... on GlossaryTerm{
urn
properties {
name
}
__typename
}
__typename
}
__typename
}
__typename
}
}
}
few-receptionist-67008
01/11/2023, 11:39 PMbulky-soccer-26729
01/12/2023, 3:32 PM