Assumptions and Limitations
Assumptions:
The API can be used for reading / querying of data as well as mutation / write
functionality for command and control of the underlying BMS system.The mutation / write functionality is determined by the permissions granted and assigned
to your user accounts.A good, consistent tagging model is in place for all site/space/equip/points.
Limitations:
Performance of the underlying installation is a limitation with regard to the manner in which API queries can be performed. It may be possible to construct a query through the API that will overload the underlying system and cause it to hang when attempting to return the data. For instance, it is conceivable to write a single API query that will return years’ worth of point data for over a thousand equipment items. Care and guidelines (to be determined) will be needed in creating the initial API queries. We will enhance this functionality in future releases to prevent problems.
High-level API model
The API for Connect is delivered in a format that describes the interface in a highly
domain focused manner.
The domain is defined in a typical industry taxonomy and is based on the following concepts and breakdown:
Site – a geophysical location or building structure;
Space – an area - room, zone, etc – within a site or structure;
Equip – a piece of equipment or system of equipment contained in a site or space;
Point – data points, measurements or calculations on equipment, spaces or sites.
About GraphQL
Considered “a query language for your API”, GraphQL provides a schema by which we model the building domain as a graph. Basic components of a GraphQL schema are object types. Objects closely correspond to the domain model – in our case, buildings, floors, HVAC equipment, lighting, sensors, etc. Objects are comprised of fields.
You can interact with GraphQL objects and their fields via queries and mutations. Queries retrieve information about objects. Mutations create, update and even delete information about objects. This guide contains example queries. Mutations are covered in a separate API guide.
The Connect API is self-documenting. The GraphQL client you use to work within the API will determine where the documentation resides.
For more context on GraphQL, review their documentation at https://graphql.org
Connect for Developers
Details on getting set up using Altair to both explore our API and begin your development journey can be found in this help centre article.