Skip to main content

DeviceEvent

No description

type DeviceEvent implements Node {
id: ID!
type: DeviceEventTypeEnum!
data: GQLTJson!
position: GQLTJson
createdAt: GQLTDate!
updatedAt: GQLTDate!
deviceId: ID
device: Device
mapItems(
after: String
first: Int = 0
before: String
last: Int = 0
orderBy: [MapItemOrderBy] = []
where: GQLTQueryMapItemWhere
include: [GQLTMapItemIncludeObject] = []
): MapItemHasManyMapItemsList
devicePositions(
after: String
first: Int = 0
before: String
last: Int = 0
orderBy: [DevicePositionOrderBy] = []
where: GQLTQueryDevicePositionWhere
include: [GQLTDevicePositionIncludeObject] = []
): DevicePositionHasManyDevicePositionsList
}

Fields#

id (ID!)#

The ID of an object

type (DeviceEventTypeEnum!)#

Type of device event

data (GQLTJson!)#

reference data for device event

position (GQLTJson)#

position column

createdAt (GQLTDate!)#

updatedAt (GQLTDate!)#

deviceId (ID)#

The ID of an object

device (Device)#

mapItems (MapItemHasManyMapItemsList)#

If provided it will return results after the provided cursor

If provided the results will be the first ${amount} of records from provided cursor, if a cursor is not provided the results will be the first ${amount} of records.

If provided it will return results before the provided cursor

If provided the results will be the first ${amount} of records from provided cursor, if a cursor is not provided the results will be the last ${amount} of records.

If provided this will sort the results by the supplied column and direction

devicePositions (DevicePositionHasManyDevicePositionsList)#

If provided it will return results after the provided cursor

If provided the results will be the first ${amount} of records from provided cursor, if a cursor is not provided the results will be the first ${amount} of records.

If provided it will return results before the provided cursor

If provided the results will be the first ${amount} of records from provided cursor, if a cursor is not provided the results will be the last ${amount} of records.

If provided this will sort the results by the supplied column and direction

Interfaces#

Node#

An object with an ID