Client
No description
type Client { buildings( after: String before: String first: Int last: Int ): BuildingsConnection! devices( after: String before: String capability: [DeviceCapability] first: Int last: Int ): DevicesConnection! id: String! logo: String name: String! timezone: String!}Fields#
buildings (BuildingsConnection!)#
Returns a list of buildings owned by the client
Returns the elements in the list that come after the specified cursor. Can only be used together with 'first'.
Returns the elements in the list that come before the specified cursor. Can only be used together with 'last'.
Returns the first n elements from the list.
Returns the last n elements from the list.
devices (DevicesConnection!)#
Returns a list of devices owned by the client
Returns the elements in the list that come after the specified cursor. Can only be used together with 'first'.
Returns the elements in the list that come before the specified cursor. Can only be used together with 'last'.
capability([DeviceCapability])#first(Int)#
Returns the first n elements from the list.
Returns the last n elements from the list.
id (String!)#
UUID of the client
logo (String)#
A base64 encoded image string in the format of data:image/jpeg;base64,/9j/4AAQ...
name (String!)#
timezone (String!)#
Timezone in the tz format (e.g. EUROPE/ZURICH)