summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/work_items/graphql/notes/update_work_item_note.mutation.graphql
blob: 3da8e7677e4d32edb64159a6bed83df20c61eda8 (plain)
1
2
3
4
5
6
7
8
9
10
#import "./work_item_note.fragment.graphql"

mutation updateWorkItemNote($input: UpdateNoteInput!) {
  updateNote(input: $input) {
    note {
      ...WorkItemNote
    }
    errors
  }
}