OBJECT

SearchSuggestionEdge

Edge containing the search suggestion.

link GraphQL Schema definition

1type SearchSuggestionEdge {
2
3# As pagination is currently not supported by the backend, this will always be the
4# zero value.
5cursor: Cursor!
6
7# The search suggestion.
8node: SearchSuggestion!
9
10}