deviceGroupSetChildLock(...args)

Arguments

deviceGroupId
ID!,non-nullrequired
childLock
Boolean!,non-nullrequired

Return type

commandId
Mutation sample
mutation deviceGroupSetChildLock($deviceGroupId: ID!, $childLock: Boolean!) {
  deviceGroupSetChildLock(deviceGroupId: $deviceGroupId, childLock: $childLock) {
    commandId 
    errors {
      message 
      path 
    }
  }
}
Variables
{ "deviceGroupId": "9cfb1c81-4c79-452f-b1f5-8ee6571276b4", "childLock": true }
Response sample
{ "data": { "commandId": "9cfb1c81-4c79-452f-b1f5-8ee6571276b4", "errors": [ { "message": "Example String", "path": "Example String" } ] } }