output createdAt and updatedAt on comments

This commit is contained in:
Grzegorz Leoniec 2018-10-26 15:16:10 +02:00
parent e79cc6977d
commit 811dee372b

View File

@ -139,6 +139,8 @@ type Comment {
content: String! content: String!
contentExcerpt: String contentExcerpt: String
post: Post @relation(name: "COMMENT", direction: "OUT") post: Post @relation(name: "COMMENT", direction: "OUT")
createdAt: String,
updatedAt: String,
deleted: Boolean deleted: Boolean
disabled: Boolean disabled: Boolean
} }