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

create_image_diff_note.mutation.graphql « mutations « graphql « design_management « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 41c3f56f477d3810a280576a41c1f3de3ee58e3d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
#import "../fragments/design_note.fragment.graphql"
#import "../fragments/design_todo_item.fragment.graphql"

mutation createImageDiffNote($input: CreateImageDiffNoteInput!) {
  createImageDiffNote(input: $input) {
    note {
      ...DesignNote
      discussion {
        id
        replyId
        noteable {
          ... on Design {
            ...DesignTodoItem
          }
        }
        notes {
          nodes {
            ...DesignNote
          }
        }
      }
    }
    errors
  }
}