OBJECT

Tag

A tag could be a category or hashtag or user or community or etc

link GraphQL Schema definition

  • type Tag {
  • # Unique URL (on original instance)
  • canonicalUrl: String
  • # The object used as a tag (eg. Category, Geolocation, Hashtag, User...)
  • context: AnyContext
  • # Unique URL (on original instance)
  • displayUsername: String
  • # Type of tag (i.e. context)
  • facet: String
  • # The primary key of the tag
  • id: ID
  • # Name of the tag (derived from its context)
  • name: String
  • # What character is used to trigger this tag (eg. @, #, +)
  • prefix: String
  • # Description of the tag (derived from its context)
  • summary: String
  • # Objects that were tagged with this tag
  • tagged: [AnyContext]
  • }