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

createSnippet.mutation.graphql « mutations « snippets « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: f688868d1b9e6e7373fc3f2b7dadb548c4c3dfe8 (plain)
1
2
3
4
5
6
7
8
mutation CreateSnippet($input: CreateSnippetInput!) {
  createSnippet(input: $input) {
    errors
    snippet {
      webUrl
    }
  }
}