gitlab-org--gitlab-foss/app/assets/javascripts/design_management/graphql/mutations/create_image_diff_note.muta...

26 lines
502 B
GraphQL

#import "../fragments/design_note.fragment.graphql"
#import "../fragments/design_todo_item.fragment.graphql"
mutation createImageDiffNote($input: CreateImageDiffNoteInput!) {
createImageDiffNote(input: $input) {
note {
...DesignNote
discussion {
id
replyId
noteable {
... on Design {
...DesignTodoItem
}
}
notes {
nodes {
...DesignNote
}
}
}
}
errors
}
}