OBJECT

SearchSuggestionCategory

A category search suggestion.

link GraphQL Schema definition

1type SearchSuggestionCategory {
2
3# The boxart URL for the category, provided by the endpoint.
4# Use this field for lower latency.
5#
6# The image dimensions are specifiable via the `height` and `width` parameters.
7# If `height` or `width` are not specified, the URL will contain
8# the template strings `{height}` and/or `{width}` in their respective places.
9boxArtURL(width: Int, height: Int): String!
10
11# The category.
12game: Game
13
14# The category's unique identifier.
15id: ID!
16
17}