`||// get post
const result = await client.graphql({
query: getPost,
variables: { id: post.id }
});
const postWithComments = result.data.getPost;
console.log("result.data.createPost ", postWithComments?.comments);
||`
**console results **
result.data.createPost {"__typename": "ModelCommentConnection", "nextToken": null}