A Tag entry provides statistics and all Publications that a single hashtags it. We provide a query operation for you to get statistics and related publications based on hashtags.
GraphQL Schema
typeQuery { tag(name: String!): Tag}
Input field:
name: [Required] The name of the hashtag
Operation
GraphQL Operation
queryTag { tag(name: "web3") { id name stats { totalPosts totalComments totalMirrors } posts { id postId profileId # ... any other Post fields } mirrors { id mirrorId profileId # ... any other Mirror fields } }}