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

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