Hello,
Im using POST /api/objects/{dbName}/query method from ARIS Repository API and Im trying to get only objects 22(functions) with symbols 94(process interface). How can I filter by symbol?
This query return all objects 22 (including 94 symbols BUT what ever symbols object 22 has too) with connection to one especific type object.
{
"kind":"OBJECT",
"start_guids":"933f955d-cc4b-11e6-2c7a-70106fb5eca8",
"items":[
{
"type":"CONNECTION",
"direction":"OUT",
"items":[
{
"type":"OBJECT",
"typenum":"22",
"function":"TARGET"
}
]
}
]
}
I just want objects 22 with symbol 94.
Thank you.