@@ -58,6 +58,7 @@ const upload = require('multer')({ dest: uploadPath })
type Post {
_id: ID,
createdAt: String
+ title: String
text: String,
images: [Image],
comments: [Comment],
@@ -70,6 +71,7 @@ const upload = require('multer')({ dest: uploadPath })
input PostInput {
+ title: String,
images: [ImageInput],
comments: [CommentInput],