This commit is contained in:
2026-06-24 14:20:05 +02:00
commit 1c859d20c8
442 changed files with 25625 additions and 0 deletions
@@ -0,0 +1,10 @@
mutation UpdatePost($id: String!, $title: String!, $content: String!) {
updatePost(id: $id, title: $title, content: $content) {
errors {
...RegularError
}
post {
...RegularPost
}
}
}