update_image_diff_note.mutation.graphql 212 字节
Newer Older
1 2 3 4 5 6 7 8 9 10
#import "../fragments/design_note.fragment.graphql"

mutation updateImageDiffNote($input: UpdateImageDiffNoteInput!) {
  updateImageDiffNote(input: $input) {
    errors
    note {
      ...DesignNote
    }
  }
}