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

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

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