Connected To node
Description
The Connected to node takes one input. It filters the items in your query by checking if they're connected to items in another design/interface via the Link attribute you specify.
Usage
The Connected to node is a condition, so it can be added to the query branch directly after the root node or a logical node.
It can be populated with an Item node.
Configuration
-
Swap - change the comparison node. If any segments hold values, they'll remain but the node types offered will be limited.
-
Delete - remove the node from the query.
Example
Fetch all defects that have reporters
In full detail:
Fetch items of the Defects interface where their Reporters Link attribute is populated by at least one item of the Contacts design
See JSON code
{
"type": "Query",
"properties": {
"collectionCode": "Live",
"dodiCode": "designInterfaces_defects"
},
"children": [
{
"type": "ConnectedTo",
"children": [
{
"type": "Item",
"properties": {
"path": "root.attributes_defectsReporters"
}
}
]
}
]
}