Files
2026-06-24 14:20:05 +02:00

11 lines
217 B
GraphQL

mutation UpdatePost($id: String!, $title: String!, $content: String!) {
updatePost(id: $id, title: $title, content: $content) {
errors {
...RegularError
}
post {
...RegularPost
}
}
}