OBJECT

GameOrchestratorQuery

A query type that provides access to Game-dependent emulator orchestrator information.

  • type GameOrchestratorQuery {
  • # The name of the orchestrator plugin.
  • pluginName: String!
  • # The compatibility level of the game with the emulator.
  • compatibility: EmulatorCompatibility!
  • # Any system files that are required but missing to run the game with this
  • # emulator.
  • missingSystemFiles: [SystemFile!]!
  • # The names of configuration profiles saved with this emulator.
  • configurationProfiles: [ConfigurationProfileType!]!
  • # Retrieves the specified configuration profile for this orchestrator registered
  • # for this game.
  • #
  • # Arguments
  • # collectionId: The collectionId of the profile to retrieve
  • configuration(collectionId: UUID!): ConfigurationCollection
  • # Retrieves the emulated ports of this orchestrator for the platform of the game.
  • # If a retrieved port does not exist, it is unassigned.
  • #
  • # Arguments
  • # portIndex: The port index to retrieve, if retrieving a specific
  • # port.
  • ports(portIndex: Int): [ConnectedEmulatorController!]!
  • }