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

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

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