Not Connected To node
Description
The Not 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 Not 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 inspections with no raised jobs
In full detail:
Fetch items of the Inspections interface where their Raised Jobs Link attribute is not populated with any items of the Jobs interface
See JSON code
{
"type": "Query",
"properties": {
"collectionCode": "Live",
"dodiCode": "designInterfaces_inspections"
},
"children": [
{
"type": "NotConnectedTo",
"children": [
{
"type": "Item",
"properties": {
"path": "root.attributes_inspectionsRaisingJobsRaisedJobs"
}
}
]
}
]
}