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

update_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: 5562ca9d89f4ab91bf2b47c44331968afc9c6fd4 (plain)
1
2
3
4
5
6
7
8
9
10
#import "../fragments/design_note.fragment.graphql"

mutation updateImageDiffNote($input: UpdateImageDiffNoteInput!) {
  updateImageDiffNote(input: $input) {
    errors
    note {
      ...DesignNote
    }
  }
}