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

update_snippet.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: 99242c5d500a1255983c275cf40cc0ebb4ee08b1 (plain)
1
2
3
4
5
6
7
8
9
mutation UpdateSnippet($input: UpdateSnippetInput!) {
  updateSnippet(input: $input) {
    errors
    snippet {
      id
      webUrl
    }
  }
}