OBJECT

Tag

link GraphQL Schema definition

  • type Tag implements Node {
  • id: ID!
  • # The text value of the tag.
  • value: String!
  • # The number of posts that have this tag.
  • count: Int!
  • # The posts that have this tag.
  • taggedPosts: [Post!]
  • }