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

updateSnippet.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: 0a72f71b7c9a5b7eb35848a7c6b49dd8e3ee93bb (plain)
1
2
3
4
5
6
7
8
9
10
11
mutation UpdateSnippet($input: UpdateSnippetInput!) {
  updateSnippet(input: $input) {
    errors
    snippet {
      webUrl
    }
    needsCaptchaResponse
    captchaSiteKey
    spamLogId
  }
}