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

11 lines
181 B
GraphQL
Raw Normal View History

2020-04-22 19:07:51 +05:30
mutation CreateSnippet($input: CreateSnippetInput!) {
createSnippet(input: $input) {
errors
snippet {
webUrl
}
2021-03-11 19:13:27 +05:30
needsCaptchaResponse
captchaSiteKey
2020-04-22 19:07:51 +05:30
}
}