OBJECT

PUBGMomentDetails

Moment Details specific to the PUBG game.

link GraphQL Schema definition

1type PUBGMomentDetails {
2
3# bucket is the player count bucket for aggregations.
4bucket: Int!
5
6# One of "game_start" or "player_count".
7event: String!
8
9# The game mode for the moment.
10gameMode: String!
11
12# The maximum player count in this period.
13maxPlayerCount: Int!
14
15# The minimum player count in this period.
16minPlayerCount: Int!
17
18}