OBJECT

PlatformInfo

Represents an emulated console or a platform in Snowflake.

  • type PlatformInfo implements Node {
  • # The Stone Platform ID of this platform.
  • platformId: PlatformId!
  • # The human readable name of this platform.
  • friendlyName: String!
  • # The maximum inputs this platform can have.
  • maximumInputs: Int!
  • # Known Stone mimetypes of ROMs for this platform.
  • fileTypes: [FileType!]!
  • # Stone metadata for this platform.
  • metadata: [StoneMetadata!]!
  • # Known BIOS or system files for this platform.
  • biosFiles: [SystemFile!]!
  • id: ID!
  • }