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