mirror of
https://github.com/IT4Change/Ocelot-Social.git
synced 2026-04-05 17:15:33 +00:00
16 lines
179 B
GraphQL
16 lines
179 B
GraphQL
mutation DeletePost($id: ID!) {
|
|
DeletePost(id: $id) {
|
|
id
|
|
deleted
|
|
content
|
|
image {
|
|
url
|
|
}
|
|
comments {
|
|
id
|
|
deleted
|
|
content
|
|
}
|
|
}
|
|
}
|