bim-query
Installation
SKILL.md
BIM Query Skill
Purpose
BIM 그래프 데이터베이스에 대한 쿼리를 작성하고 최적화합니다.
Query Categories
1. Spatial Queries (공간 조회)
// 특정 레벨의 모든 요소
MATCH (e:Element)-[:LOCATED_IN]->(l:Spatial {spatialType: 'Level', name: $levelName})
RETURN e
// 특정 공간의 요소 수
MATCH (e:Element)-[:LOCATED_IN]->(r:Spatial {spatialType: 'Room', number: $roomNumber})
RETURN COUNT(e) as elementCount