Update Schedule

mutation {
    updateSchedule(
        ID: 001
        input: {
        name: "Product Schedule1", 
        description: "Daily on-call for product team", 
        timeZone: "Asia/Kolkata"
    }) {
        ID
        name
        orgID
        description
        timeZone
        teamID
    }
}

Response:

{
  "data": {
    "updateSchedule": {
      "ID": 001,
      "name": "Product Schedule1",
      "orgID": "60cb200bc9de4a0008d2fc43",
      "description": "Daily on-call for product team",
      "timeZone": "Asia/Kolkata",
      "teamID": "6129ac15518568defa92794c"
    }
  }
}

Have any questions? Ask the community.

Last updated