implement relationship integration tests

This commit is contained in:
2025-04-24 15:08:34 +02:00
parent b5342a19ca
commit c8d68c5cc7
28 changed files with 323 additions and 83 deletions

View File

@@ -954,7 +954,7 @@
"schema": {
"type": "array",
"items": {
"$ref": "#/components/schemas/Relationship"
"$ref": "#/components/schemas/dbtypeRelationship"
}
}
}
@@ -2629,6 +2629,36 @@
}
}
},
"dbtypeRelationship": {
"type": "object",
"properties": {
"Id": {
"type": "integer"
},
"ElementId": {
"type": "string"
},
"Type": {
"type": "string",
"nullable": true
},
"StartId": {
"type": "integer"
},
"StartElementId":{
"type": "string"
},
"EndId": {
"type": "integer"
},
"EndElementId": {
"type": "string"
},
"Props": {
"$ref": "#/components/schemas/FamilyRelationship"
}
}
},
"OptimizedPersonNode": {
"type": "object",
"properties": {