implemented tombstoning

This commit is contained in:
Wyatt Johnson
2018-04-18 17:22:39 -06:00
parent 431e9d8b09
commit 8e34fd1925
11 changed files with 75 additions and 31 deletions
+4 -1
View File
@@ -503,7 +503,7 @@ type Comment {
id: ID!
# The actual comment data.
body: String!
body: String
# The body history of the comment. Requires the `ADMIN` or `MODERATOR` role or
# the author.
@@ -537,6 +537,9 @@ type Comment {
# The status history of the comment. Requires the `ADMIN` or `MODERATOR` role.
status_history: [CommentStatusHistory!]
# The date that the comment was deleted at if it was.
deleted_at: Date
# The time when the comment was created
created_at: Date!