summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/snippets/mutations/createSnippet.mutation.graphql
blob: 64d5d7c30faa88fb935f7bf9a6b25d56a1cac56a (plain)
1
2
3
4
5
6
7
8
9
10
mutation CreateSnippet($input: CreateSnippetInput!) {
  createSnippet(input: $input) {
    errors
    snippet {
      webUrl
    }
    needsCaptchaResponse
    captchaSiteKey
  }
}