OBJECT

SearchSuggestion

A search suggestion.

link GraphQL Schema definition

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