summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/work_items/graphql/notes/create_work_item_note.mutation.graphql
blob: 3286895215f1d6241e5a0ba24683080470d3ad23 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#import "ee_else_ce/work_items/graphql/notes/work_item_note.fragment.graphql"

mutation createWorkItemNote($input: CreateNoteInput!) {
  createNote(input: $input) {
    note {
      id
      discussion {
        id
        notes {
          nodes {
            ...WorkItemNote
          }
        }
      }
    }
    errors
  }
}