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