OBJECT

SearchSuggestionConnection

A list of search suggestions and related tracking data.

link GraphQL Schema definition

1type SearchSuggestionConnection {
2
3# The list of search suggestions.
4edges: [SearchSuggestionEdge!]
5
6# As pagination is currently not supported by the backend, this will always be the
7# zero value.
8pageInfo: PageInfo!
9
10# Tracking data for the search suggestions.
11tracking: SearchSuggestionTracking
12
13}