Newer
Older
mutation createAmendLesson($input: CreateLessonEventInput!) {
createAmendLesson(input: $input) {
subject {
id
}
teachers {
id
}
groups {
id
}
rooms {
id
}
mutation patchAmendLesson($input: PatchLessonEventInput!, $id: ID!) {
patchAmendLesson(input: $input, id: $id) {
lessonEvent {
id
subject {
id
}
teachers {
id
}
groups {
id
}
rooms {
id
}
cancelled
comment
}
}
}