@ifc-lite/query
v1.14.1
Published
Query system for IFC-Lite
Downloads
1,964
Readme
@ifc-lite/query
Query system for IFClite. Provides a fluent API for filtering and querying IFC entities by type, property, and relationship.
Installation
npm install @ifc-lite/queryQuick Start
import { IfcQuery } from '@ifc-lite/query';
const query = new IfcQuery(dataStore);
// Find all external walls
const walls = query
.byType('IFCWALL')
.withProperty('Pset_WallCommon', 'IsExternal', true)
.execute();Features
- Fluent query API
- Filter by IFC type, properties, and relationships
- SQL-like query expressions
- Multi-model query support
API
See the Querying Guide and API Reference.
