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

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

mutation repositionImageDiffNote($input: RepositionImageDiffNoteInput!) {
  repositionImageDiffNote(input: $input) {
    errors
    note {
      ...DesignNote
    }
  }
}