LINK_OBJECTS
Description
Warning
To use this feature, Object Link needs to be configured with Object Link in the data model.
The LINK_OBJECTS
operator creates a new table containing all rows of the input table that are part of the Object Link graph.
The LINK_OBJECTS operator creates a new table that contains all objects of the input column that are part of the Object Link graph. For each object, the count of outgoing and incoming links is calculated and saved in additional columns of the table. The result table is joined N:1 to the input table.
Syntax
LINK_OBJECTS( input_table.column )[.COLUMN]
input_table.column
specifies the table and output column of the connected table.If
COLUMN
is set, it will specify the return value of the output. Otherwise the table is returned. There are three available columns with the namesVALUE
,OUTGOING
andINCOMING
:VALUE
returns the corresponding value of this object that is specified in the input column.OUTGOING
returns the count of outgoing links of this object.INCOMING
returns the count of incoming links of this object.
Examples
[1] LINK_OBJECTS returns all objects and all link counts of the given input column. ![]() | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
[2] LINK_OBJECTS returns the value of the specified input column when VALUE is used as the output column type. LINK_OBJECTS returns the same result table if the input table is the same. | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|