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

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

mutation updateNote($input: UpdateNoteInput!) {
  updateNote(input: $input) {
    note {
      ...DesignNote
    }
    errors
  }
}