OBJECT

DeviceSpecification

link GraphQL Schema definition

type DeviceSpecification implements Node {

The description of the device specification
description: String!

The devices associated with the device specification

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.
first: Returns the first _n_ elements from the list.
last: Returns the last _n_ elements from the list.
orderBy: Ordering options for device connections
devices(
after: String,
before: String,
first: Int,
last: Int,
orderBy: [DeviceSort!]
): DeviceConnection

id: ID!

The name of the device specification
name: String!

The properties associated with the device specification

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.
first: Returns the first _n_ elements from the list.
last: Returns the last _n_ elements from the list.
properties(after: String, before: String, first: Int, last: Int): DeviceSpecificationPropertyConnection

}