OBJECT

Query

link GraphQL Schema definition

type Query {

Get a list of Roles that can be assigned.

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.
assignableRoles(after: String, before: String, first: Int, last: Int): RoleConnection!

Get an organization by ID

Arguments
id: [Not documented]
organization(id: ID!): Organization

Get a list of organizations filtered using the available fields in the
OrganizationFilterInput.

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.
orderBy: Ordering options for organization connections
organizations(
after: String,
before: String,
filter: OrganizationFilterInput,
first: Int,
last: Int,
orderBy: [OrganizationSort!]
): OrganizationConnection!

Get a list of PersonUsers filtered using the available fields in the
PersonUserFilterInput.

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.
orderBy: Ordering options for personuser connections
personUsers(
after: String,
before: String,
filter: PersonUserFilterInput,
first: Int,
last: Int,
orderBy: [PersonUserSort!]
): PersonUserConnection!

Get a user by ID

Arguments
id: [Not documented]
user(id: ID!): UserInterface

Authenticated user
viewer: UserInterface

Get a charge supercap mobile terminated message to send to a device.

Arguments
deviceId: [Not documented]
mode: [Not documented]
chargeSupercapMobileTerminatedMessage(
deviceId: ID!,
mode: ChargeSupercapModeEnum!
): MobileTerminatedChargeSupercapMessage

Find a Configuration by one of the given arguments. You can only use one
argument.

Arguments
definition: The definition of the configuration
id: [Not documented]
configuration(definition: String, id: ID): Configuration

Get a configuration mobile terminated message deployable to a device.

Arguments
configurationId: [Not documented]
deploymentTarget: Defines the deployment target
deviceId: [Not documented]
configurationMobileTerminatedMessage(
configurationId: ID!,
deploymentTarget: DeploymentTargetEnum!,
deviceId: ID
): ConfigurationMobileTerminatedMessage

Find all Configurations

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.
orderBy: Ordering options for configuration connections
configurations(
after: String,
before: String,
filter: ConfigurationFilterInput,
first: Int,
last: Int,
orderBy: [ConfigurationSort!]
): ConfigurationConnection!

Find a Device by one of the given arguments. You can only use one argument.

Arguments
esn: The unique serial number
id: [Not documented]
imeiSatellite: The IMEI of the satellite transmissor
device(esn: String, id: ID, imeiSatellite: String): Device

Find all Device Specifications

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.
deviceSpecifications(
after: String,
before: String,
filter: DeviceSpecificationFilterInput,
first: Int,
last: Int
): DeviceSpecificationConnection!

Find all Devices

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.
orderBy: Ordering options for device connections
devices(
after: String,
before: String,
filter: DeviceFilterInput,
first: Int,
last: Int,
orderBy: [DeviceSort!]
): DeviceConnection!

Get a Device Firmware Update mobile terminated message for the given device.
Used for booting device in bootloader mode.

Arguments
deploymentTarget: Defines the deployment target
deviceId: [Not documented]
dfuMobileTerminatedMessage(
deploymentTarget: DeploymentTargetEnum!,
deviceId: ID!
): MobileTerminatedDFUMessage

Find a Firmware by ID

Arguments
id: [Not documented]
firmware(id: ID): Firmware

Find all Firmwares.

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.
orderBy: Ordering options for firmware connections
firmwares(
after: String,
before: String,
filter: FirmwareFilterInput,
first: Int,
last: Int,
orderBy: [FirmwareSort!]
): FirmwareConnection

Returns a get satellite configuration mobile terminated message to send to a
device.

Arguments
deploymentTarget: Defines the deployment target
deviceId: [Not documented]
getConfigMobileTerminatedMessage(
deploymentTarget: DeploymentTargetEnum!,
deviceId: ID!
): MobileTerminatedGetConfigMessage

Get a voltage mobile terminated message to send to a device.

Arguments
deviceId: [Not documented]
getVoltageMobileTerminatedMessage(
deviceId: ID!
): MobileTerminatedGetVoltageMessage

Decrypt and parse a GT2 TLV message.

Arguments
deploymentTarget: Defines the deployment target
deviceId: [Not documented]
payload: The payload of the response
parseGT2TLVMessage(
deploymentTarget: DeploymentTargetEnum!,
deviceId: ID!,
payload: Hexadecimal!
): [GT2TLVMessage!]

Find all Readings.

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.
orderBy: Ordering options for reading connections
readings(
after: String,
before: String,
filter: ReadingFilterInput,
first: Int,
last: Int,
orderBy: [ReadingSort!]
): ReadingConnection

}

link Required by

This element is not required by anyone