Welcome to mirror list, hosted at ThFree Co, Russian Federation.

create_image_diff_note.mutation.graphql « mutations « graphql « design_management_legacy « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
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
  }
}