skillbox/client/src/graphql/gql/mutations/updateNote.gql

9 lines
121 B
GraphQL

mutation UpdateNote($input: UpdateNoteInput!) {
updateNote(input: $input) {
note {
id
text
}
}
}