Skip to main content

NotConnectedTo

How to use the NotConnectedTo operator

The NotConnectedTo operator returns items not connected via a path.

Allowed Children

Only the node of type Item since all this condition it takes is a path

Example Basic structure

Returns the files not contained in any folder:

{
"type": "Query",
"properties": {
"dodiCode": "designs_files",
"attributes": ["all"]
},
"children": [
{
"type": "ConnectedTo",
"children": [
{
"type": "Item",
"properties": {
"path": "root^attributes_foldersObjects"
}
}
]
}
]
}