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

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