OBJECT

GameRecord

The record associated with a Game and its associated metadata.

  • type GameRecord {
  • # The title of the game.
  • title: String
  • # The original platform or game console of the game this object represents.
  • platformId: PlatformId!
  • # The unique ID of the game.
  • recordId: UUID!
  • # The metadata associated with this game.
  • #
  • # Arguments
  • # where: [Not documented]
  • metadata(where: ListMetadataFilterInput): [RecordMetadata!]!
  • }