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

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

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