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

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

mutation createNote($input: CreateNoteInput!) {
  createNote(input: $input) {
    note {
      ...DesignNote
    }
    errors
  }
}