debian-mirror-gitlab/app/assets/javascripts/snippets/mutations/delete_snippet.mutation.graphql

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

6 lines
91 B
GraphQL
Raw Normal View History

2020-01-01 13:55:28 +05:30
mutation DeleteSnippet($id: ID!) {
2020-07-28 23:09:34 +05:30
destroySnippet(input: { id: $id }) {
2020-01-01 13:55:28 +05:30
errors
}
2020-07-28 23:09:34 +05:30
}