Skip to main content

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

This node is a condition. It can be added to the query branch directly after the root node or a logical node.

alt text

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 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

alt text
See JSON code
{
"type": "Query",
"properties": {
"collectionCode": "Live",
"dodiCode": "designInterfaces_inspections"
},
"children": [
{
"type": "NotConnectedTo",
"children": [
{
"type": "Item",
"properties": {
"path": "root.attributes_inspectionsRaisingJobsRaisedJobs"
}
}
]
}
]
}