hubKeepDevicesFinishedNotification(...args)

Arguments

commandId
ID!,non-nullrequired
commandStatus
keepDevices

Return type

commandId
String!,non-null
deviceIds
[ID!]!,non-null
Mutation sample
mutation hubKeepDevicesFinishedNotification(
  $commandId: ID!
  $commandStatus: String
  $keepDevices: HubKeepDevicesFinishedInput!
) {
  hubKeepDevicesFinishedNotification(
    commandId: $commandId
    commandStatus: $commandStatus
    keepDevices: $keepDevices
  ) {
    commandId 
    deviceIds 
    errors {
      message 
      path 
    }
  }
}
Variables
{ "commandId": "9cfb1c81-4c79-452f-b1f5-8ee6571276b4", "commandStatus": "Example String", "keepDevices": { "errors": [ { "message": "Example String" } ] } }
Response sample
{ "data": { "commandId": "Example String", "deviceIds": [ "9cfb1c81-4c79-452f-b1f5-8ee6571276b4" ], "errors": [ { "message": "Example String", "path": "Example String" } ] } }