Synonyms

The Synonyms() function returns the synonym text values 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 an array with text values that contain the synonyms of the given concept.

An unknown value is returned if the concept is unknown or there are no synonyms provided in the concept properties.

Syntax

Synonyms(concept)

Synonyms('Misc'.'GroupingLocalName') =>Result: "Groups, Group, Collection"

Split(ToString( Synonyms('Misc'.'GroupingLocalName') ), ", ")(2) =>Result: Group

Synonyms('concept-with-no-synonyms') =>Result: unknown

Synonyms(unknownconcept) =>Result: unknown

Parameters

NameTypeRequiredDescription

concept

concept

a single concept, either literal or as expression

Last updated