GetChildren

The GetChildren() function returns all the child concepts of a concept.

Read general information about Concepts and Ontology

This function is NOT SQL compatible. For more information about SQL compatibility, see our documentation.

Returns a concept set that contains the direct child concepts of a concept.

An unknown value is returned if the concept has no children or the given parameter is unknown.

The GetDescendants() function includes all descendants (multiple levels).

Syntax

GetChildren(concept)

GetChildren('World regions'.'EMEA') =>Result: { MENA, CIS, DACH }

GetChildren('Color') =>Result: { Blue, Red, Yellow, Green, Orange, Purple, Amber, Magenta, Teal, Violet }

GetChildren('Color') where concept:'PrimaryColor' = true =>Result: { Blue, Red, Yellow }

GetChildren('Color'.'Green') =>Result: unknown

GetChildren(unknownconcept) =>Result: unknown

Parameters

NameTypeRequiredDescription

concept

concept

a single concept, either literal or as expression

Last updated