h2. What Create new screen, where user can view comments for the post
h2. How Use GraphQL mutation: It's is currently stored in allMemes query, this is likely to change.
{code:graphql} mutation postComment($memeid: ID!, $comment: String!, $owner: String!) query allMemes { postComment(memeid: $memeid, comment: $comment, allMemes { id photourl owner : $owner) likes comments { id comment owner } } } {code} |
|