Files
openide/plugins/gitlab/resources/graphql/query/createNote.graphql
Ivan Semenov 9c4d03d8a8 [gitlab] ability to add new comments to MR
GitOrigin-RevId: b9832709f753354200d3c15340b00a3b42b4b525
2023-01-27 20:47:50 +00:00

10 lines
196 B
GraphQL

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