Files
openide/plugins/gitlab/resources/graphql/query/createDiffNote.graphql
Ivan Semenov 3bca9b4898 [gitlab] ability to add new notes to MR diffs
GitOrigin-RevId: 25965489ee4f2f1bde056c2e83765c8675d390ee
2023-02-08 19:09:04 +00:00

10 lines
252 B
GraphQL

mutation($noteableId: NoteableID!, $body: String!, $position: DiffPositionInput!) {
createDiffNote(input: {noteableId: $noteableId, position: $position ,body: $body}){
note {
discussion {
...discussion
}
}
errors
}
}