Skip to main content

ConnectedTo

How to use the ConnectedTo operator

The ConnectedTo operator returns items connected via a path.

Allowed Children

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

Example Basic structure

This query returns only the files that are connected to a folder:

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