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.
Returns
CheckDeviceConnectionTriggers 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.
Possible Errors
Allowed Viewers
Required Permissions
Can commission smart metersQuery Complexity
1Examples
mutation CheckDeviceConnection($input: CheckDeviceConnectionInput!) {
checkDeviceConnection(input: $input) {
requestReference
}
}
Variables
{
"input": CheckDeviceConnectionInput
}
Response
{
"data": {
"checkDeviceConnection": {
"requestReference": "call-deep-answer-audience-baby"
}
}
}