10 lines
181 B
GraphQL
10 lines
181 B
GraphQL
mutation CreateSnippet($input: CreateSnippetInput!) {
|
|
createSnippet(input: $input) {
|
|
errors
|
|
snippet {
|
|
webUrl
|
|
}
|
|
needsCaptchaResponse
|
|
captchaSiteKey
|
|
}
|
|
}
|