OBJECT

BitsHashtagEntry

BitsHashtagEntry contains information about a hashtag, sucn as the description and image URL for display.

link GraphQL Schema definition

1type BitsHashtagEntry {
2
3# description text.
4description: String
5
6# The ID, which would be the hashtag value.
7id: ID!
8
9# An image to display in autocomplete.
10imageURL: String
11
12}