debian-mirror-gitlab/app/assets/javascripts/design_management/graphql/mutations/createImageDiffNote.mutation.graphql
2020-05-24 23:13:21 +05:30

21 lines
382 B
GraphQL

#import "../fragments/designNote.fragment.graphql"
mutation createImageDiffNote($input: CreateImageDiffNoteInput!) {
createImageDiffNote(input: $input) {
note {
...DesignNote
discussion {
id
replyId
notes {
edges {
node {
...DesignNote
}
}
}
}
}
errors
}
}