-
Notifications
You must be signed in to change notification settings - Fork 632
JSON Queries
Ruben de Laat edited this page Nov 17, 2016
·
14 revisions
This query will query all objects.
{
}
This query will get all IfcWall objects
{
"type": "IfcWall"
}
When your model for example only contains IfcWallStandardCase objects, this query will not return any objects, although IfcWallStandardCase is a subtype of IfcWall. To include subtypes, you have to explicitly define this:
{
"type": "IfcWall",
"includeAllSubtypes": true
}
When you already know the GUID(s) of (an) object(s), you can query those directly:
{
"guids": ["GUID1", "GUID2"]
}
The same as for GUIDs, you can also query by OID (ObjectID)
{
"oids": [1523, 2130, 898]
}
Get Started
- Quick Guide
- Requirements Version 1.2
- Requirements Version 1.3
- Requirements Version 1.4
- Requirements Version 1.4 > 2015-09-12
- Requirements Version 1.5
- Download
- JAR Starter
- Setup
Deployment
- Ubuntu installation
- Windows installation
- Security
- Memory Usage
- More memory
- Performance statistics
- Large databases
Developers
- Service Interfaces
- Common functions
- Data Model
- Low Level Calls
- Endpoints
Clients
BIMServer Developers
- Plugins in 1.5
- Plugin Development
- Eclipse
- Eclipse Modeling Framework
- Embedding
- Terminology
- Database/Versioning
- IFC STEP Encoding
- Communication
- Global changes in 1.5
- Writing a service
- Services/Notifications
- BIMserver 1.5 Developers
- Extended data
- Extended data schema
- Object IDM
New developments
- New remote service interface
- Plugins new
- Deprecated
- New query language
- Visual query language
- Reorganizing BIMserver JavaScript API
General