deviceGroupSetOpenPercent(...args)

Arguments

deviceGroupId
ID!,non-nullrequired
openPercent
Float!,non-nullrequired

Return type

commandId
Mutation sample
mutation deviceGroupSetOpenPercent($deviceGroupId: ID!, $openPercent: Float!) {
  deviceGroupSetOpenPercent(deviceGroupId: $deviceGroupId, openPercent: $openPercent) {
    commandId 
    errors {
      message 
      path 
    }
  }
}
Variables
{ "deviceGroupId": "9cfb1c81-4c79-452f-b1f5-8ee6571276b4", "openPercent": 40 }
Response sample
{ "data": { "commandId": "9cfb1c81-4c79-452f-b1f5-8ee6571276b4", "errors": [ { "message": "Example String", "path": "Example String" } ] } }
Previous page