8 lines
137 B
GraphQL
8 lines
137 B
GraphQL
mutation CreateSnippet($input: CreateSnippetInput!) {
|
|
createSnippet(input: $input) {
|
|
errors
|
|
snippet {
|
|
webUrl
|
|
}
|
|
}
|
|
}
|