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

deleteSnippet.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: 0c829cbdee69c62ffa80d738ed2ccf888ee4e8c0 (plain)
1
2
3
4
5
mutation DeleteSnippet($id: ID!) {
  destroySnippet(input: {id: $id}) {
    errors
  }
}