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
This node is a condition. 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.
Options
Select the node to access its options:
-
Swap - use a different comparison node. Any populated segments are kept, which limits the options.
-
Delete - remove the node from the query branch.
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"
}
}
]
}
]
}

