OBJECT

BaseGameSession

link GraphQL Schema definition

  • type BaseGameSession {
  • # ID of the entity.
  • id: String!
  • # Create date of the entity.
  • createdAt: DateTime!
  • # Last update date of the entity.
  • updatedAt: DateTime!
  • # Bundle ID of the game. (e.g. com.njoyKidz.memory)
  • bundleId: String!
  • # Platform of the game (e.g. android)
  • platform: String!
  • # Total play time of the session. (seconds)
  • totalPlayTime: Int!
  • # Timestamp of the game creation.
  • timestamp: String!
  • # ID of the client
  • clientId: String!
  • playerClient: PlayerClient!
  • }