get_ifc_relationships
Extract and retrieve all relationships associated with a specific IFC entity using its GlobalId. Returns a JSON-formatted string detailing the entity's connections within the model.
Instructions
Get all relationships for a specific IFC entity.
Args:
global_id: GlobalId of the IFC entity
Returns:
A JSON-formatted string with all relationships the entity participates in
Input Schema
Name | Required | Description | Default |
---|---|---|---|
global_id | Yes |
Input Schema (JSON Schema)
{
"properties": {
"global_id": {
"title": "Global Id",
"type": "string"
}
},
"required": [
"global_id"
],
"title": "get_ifc_relationshipsArguments",
"type": "object"
}