OBJECT

SearchSuggestionChannel

A channel search suggestion.

link GraphQL Schema definition

1type SearchSuggestionChannel {
2
3# The channel's unique identifier.
4id: ID!
5
6# Whether or not the channel is verified, provided by the endpoint.
7# Use this field for lower latency.
8isVerified: Boolean!
9
10# The login of the channel, provided by the endpoint.
11# Use this field for lower latency.
12login: String!
13
14# The profile image URL for the channel, provided by the endpoint.
15# Use this field for lower latency.
16#
17# Valid widths are 28, 50, 70, 150, 300, and 600.
18# The image height will be the same as the given width.
19profileImageURL(width: Int!): String
20
21# The user of the channel.
22user: User
23
24}