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

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
}