What Show additional information of the post.
- Number of likes
- Author(owner)'s name
- Owner's icon
How? Use GraphQL current allMemes query should contain such information:
query allMemes { |
allMemes { |
id |
photourl |
owner |
likes |
comments { |
id |
comment |
owner |
} |
} |
}
|
|