mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-17 07:20:53 +07:00
10 lines
252 B
GraphQL
10 lines
252 B
GraphQL
mutation($noteableId: NoteableID!, $body: String!, $position: DiffPositionInput!) {
|
|
createDiffNote(input: {noteableId: $noteableId, position: $position ,body: $body}){
|
|
note {
|
|
discussion {
|
|
...discussion
|
|
}
|
|
}
|
|
errors
|
|
}
|
|
} |