Implement new comment functionality for the meme.
Use GraphQL mutation:
mutation postComment($memeid: ID!, $comment: String!, $owner: String!){
postComment(memeid: $memeid, comment: $comment, owner: $owner){
id
comment
owner
}