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