OBJECT

Reading

A Reading represents the reading of a Device.

link GraphQL Schema definition

type Reading implements Node {

The device of the reading
device: Device

id: ID!

Location reading expressed as a latitude and longitude
location: Location

The reading's properties

Arguments
after: Returns the elements in the list that come after the
specified cursor.
before: Returns the elements in the list that come before the
specified cursor.
filter: [Not documented]
first: Returns the first _n_ elements from the list.
last: Returns the last _n_ elements from the list.
readingProperties(
after: String,
before: String,
filter: ReadingPropertiesFilterInput,
first: Int,
last: Int
): ReadingPropertyConnection

The date when the reading was received
receivedAt: ISO8601DateTime

The date when the reading was reported
reportedAt: ISO8601DateTime

}