mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-18 08:50:57 +07:00
10 lines
196 B
GraphQL
10 lines
196 B
GraphQL
mutation($noteableId: NoteableID!, $body: String!) {
|
|
createNote(input: {noteableId: $noteableId, body: $body}){
|
|
note {
|
|
discussion {
|
|
...discussion
|
|
}
|
|
}
|
|
errors
|
|
}
|
|
} |