9 lines
137 B
GraphQL
9 lines
137 B
GraphQL
|
mutation UpdateSnippet($input: UpdateSnippetInput!) {
|
||
|
updateSnippet(input: $input) {
|
||
|
errors
|
||
|
snippet {
|
||
|
webUrl
|
||
|
}
|
||
|
}
|
||
|
}
|