entity-relation-controller
Find related entity infos (findInfoByQuery)
Returns all entity infos that are related to the specific entity. The entity id, relation type, entity types, depth of the search, and other query parameters defined using complex 'EntityRelationsQuery' object. See 'Model' tab of the Parameters for more info. Relation Info is an extension of the default Relation object that contains information about the 'from' and 'to' entity names.
post/api/relations/info
Request body
Example request
{
"parameters": {
"rootId": "784f394c-42b6-435a-983c-b7beff2784f9"
},
"filters": [
{
"relationType": "Contains"
}
]
}Response
OK
Example response
[
{
"from": {
"id": "784f394c-42b6-435a-983c-b7beff2784f9",
"entityType": "DEVICE"
},
"to": {
"id": "784f394c-42b6-435a-983c-b7beff2784f9",
"entityType": "DEVICE"
},
"type": "Contains",
"typeGroup": "COMMON",
"fromName": "A4B72CCDFF33",
"toName": "A4B72CCDFF35",
"additionalInfo": {}
}
]