checkDeviceConnection
Triggers an asynchronous request to check the connection of a device.
As this is an asynchronous operation, the mutation does not return the result of the request. Instead, the request reference is returned, which can be used to track the status of the request. If it's an organisation, the organisation will receive an update on the request via the agent services.
Arguments
Input field for checking device connection.
Examples
The example data in the variables and responses below are autogenerated values designed to resemble real inputs. They do not represent actual customer data, and in some cases may require additional validation.
mutation CheckDeviceConnection($input: CheckDeviceConnectionInput!) {
checkDeviceConnection(input: $input) {
requestReference
}
}
Variables
{
"input": CheckDeviceConnectionInput
}
Response
{
"data": {
"checkDeviceConnection": {
"requestReference": "short-cell-process-wide-draw"
}
}
}