summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/design_management_legacy/graphql/mutations/create_image_diff_note.mutation.graphql
blob: c8ade328120ccfcd08f5d19dedaeccf4cf20db46 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#import "../fragments/design_note.fragment.graphql"

mutation createImageDiffNote($input: CreateImageDiffNoteInput!) {
  createImageDiffNote(input: $input) {
    note {
      ...DesignNote
      discussion {
        id
        replyId
        notes {
          edges {
            node {
              ...DesignNote
            }
          }
        }
      }
    }
    errors
  }
}