OBJECT
SearchSuggestion
A search suggestion.
link GraphQL Schema definition
1 type SearchSuggestion { 2 3 # Extra data for category or channel type of search suggestion. 4 : SearchSuggestionContent 5 6 # The part of the suggestion that matches the search query. 7 : SearchSuggestionHighlight! @deprecated( reason: "Use 'matchingCharacters' instead." ) 8 9 # The search suggestion's unique identifier. 10 : ID! 11 12 # The part of the suggestion that matches the search query. 13 : SearchSuggestionHighlight 14 15 # The search suggestion string. 16 : String! 17 18 }