(query: str)
| 64 | |
| 65 | @server.tool() |
| 66 | def ifc_select(query: str) -> list[dict[str, Any]]: |
| 67 | return session.ifc_select(query) |
| 68 | |
| 69 | @server.tool() |
| 70 | def ifc_relations(element_id: int, traverse: str = "") -> dict[str, Any] | list[dict[str, Any]]: |
nothing calls this directly
no test coverage detected