diff --git a/web/src/components/EditPostCell/EditPostCell.js b/web/src/components/EditPostCell/EditPostCell.js index 904e44a..236eda1 100644 --- a/web/src/components/EditPostCell/EditPostCell.js +++ b/web/src/components/EditPostCell/EditPostCell.js @@ -16,6 +16,9 @@ const UPDATE_POST_MUTATION = gql` mutation UpdatePostMutation($id: Int!, $input: UpdatePostInput!) { updatePost(id: $id, input: $input) { id + title + body + createdAt } } `