OBJECT

SearchForResultGames

Contains game search results.

link GraphQL Schema definition

1type SearchForResultGames {
2
3# Cursor for fetching the next page of results.
4cursor: String
5
6# List of edges containing game results and trackingIDs.
7edges: [SearchForEdge!]!
8
9# List of matching game results.
10items: [Game!]
11
12# Information about this page.
13pageInfo: PageInfo!
14
15# Order in which the result should be displayed.
16score: Int!
17
18# Total number of results.
19totalMatches: Int!
20
21}