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
98 B
GraphQL
Raw Normal View History

2022-07-16 23:28:13 +05:30
mutation DeleteSnippet($id: SnippetID!) {
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
}