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)
- : String
- # The object used as a tag (eg. Category, Geolocation, Hashtag, User...)
- : AnyContext
- # Unique URL (on original instance)
- : String
- # Type of tag (i.e. context)
- : String
- # The primary key of the tag
- : ID
- # Name of the tag (derived from its context)
- : String
- # What character is used to trigger this tag (eg. @, #, +)
- : String
- # Description of the tag (derived from its context)
- : String
- # Objects that were tagged with this tag
- : [AnyContext]
- }