The GetParent() function returns the direct parent concept of a given concept.
GetParent()
Read general information about Concepts and Ontology
This function is NOT SQL compatible. For more information about SQL compatibility, see our documentation.
Returns the direct parent concept of a given concept.
An unknown value is returned if the concept has no parent or the given parameter is unknown.
The GetAncestors()arrow-up-right function includes the entire parent chain from root to concept (excluding root and concept).
GetParent(
concept
)
GetParent('Color'.'Violet') =>Result: Color
GetParent('Color'.'Violet')
GetParent('World regions'.'EMEA'.'MENA') =>Result: EMEA
GetParent('World regions'.'EMEA'.'MENA')
GetParent(unknownconcept) =>Result: unknown
GetParent(unknownconcept)
☑️
a single concept, either literal or as expression
Last updated 3 years ago
Was this helpful?