OBJECT
SearchSuggestionChannel
A channel search suggestion.
link GraphQL Schema definition
1 type SearchSuggestionChannel { 2 3 # The channel's unique identifier. 4 : ID! 5 6 # Whether or not the channel is verified, provided by the endpoint. 7 # Use this field for lower latency. 8 : Boolean! 9 10 # The login of the channel, provided by the endpoint. 11 # Use this field for lower latency. 12 : 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. 19 (: Int!): String 20 21 # The user of the channel. 22 : User 23 24 }