Skip to main content

Extend the Search Navigating Elements Connections

The Search for Navigating Elements Connections feature allows you to search attribute values on the elements connected to a specific element.

p_CU >> InferredStatus = 'OS'

Syntax reference: [Literal] [Connection Operator] [Expression]

Returns the list of all the elements connected from the element p_CU (connected in output) having InferredStatus = 'OS'.

p_CU << InferredStatus = 'OS'

Syntax reference: [Literal] [Connection Operator] [Expression]

Returns the list of all the elements connected to the element p_CU (connected in input) having InferredStatus = 'OS'.

p_CU |> InferredStatus = 'OS'

Syntax reference: [Literal] [Connection Operator] [Expression]

Returns the list of all the elements connected to the element p_CU having Inferred Status = 'OS'.

Note

Connections can be navigated in cascade appending connection operators (>>, <<, |>). As an example:  P_CU >> Status='OS' >> Status='OS'