Get Rotation Events by ID

query{
  rotation(ID:13388){
    ID,
    scheduleID,
    color,
    name,
    events(filters:{
      participantIDs:["60f12dd3814bef0008c4036e"],
      startTime:"2023-05-10T00:00:00Z",
      endTime:"2023-06-10T00:00:00Z"
    }){
      ID,
      startTime,
      endTime,
      participants{
        ID
      }
    }
  }
}

Response:

{
  "data": {
    "rotation": {
      "ID": 13388,
      "scheduleID": 9119,
      "color": null,
      "name": "new daily 24x7",
      "events": []
    }
  }
}

Last updated