OBJECT

MemoryGame

link GraphQL Schema definition

  • type MemoryGame {
  • # ID of the entity.
  • id: String!
  • # Create date of the entity.
  • createdAt: DateTime!
  • # Last update date of the entity.
  • updatedAt: DateTime!
  • # Number of cards.
  • cardCount: Int!
  • # Number of wrong trials.
  • wrong: Int!
  • # Number of wrong clicks.
  • click: Int!
  • # Time passed.
  • time: Int!
  • # Session id of the game.
  • sessionId: String!
  • session: BaseGameSession!
  • }