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