11 lines
211 B
GraphQL
11 lines
211 B
GraphQL
|
#import "../fragments/designNote.fragment.graphql"
|
||
|
|
||
|
mutation updateImageDiffNote($input: UpdateImageDiffNoteInput!) {
|
||
|
updateImageDiffNote(input: $input) {
|
||
|
errors
|
||
|
note {
|
||
|
...DesignNote
|
||
|
}
|
||
|
}
|
||
|
}
|