1 2 3 4 5 6 7 8 9 10 11 12 13 14
mutation UpdateDiary($date: Date!, $note_body: String!) { updateDiary(date: $date, noteBody: $note_body) { ...Diary } } fragment Diary on Diary { __typename collapseCompleted date id noteBody supportsNotes }