OBJECT

InstallJobQueue

Provides access to values in the scraping job queue

  • type InstallJobQueue implements JobQueue {
  • # The jobs currently active in the scraping queue.
  • activeJobIds: [UUID!]!
  • # The jobs currently in the scraping queue.
  • queuedJobIds: [UUID!]!
  • # The jobs that are still in the scraping queue, but no longer has items to
  • # process.
  • zombieJobIds: [UUID!]!
  • # Arguments
  • # jobId: The `jobId` of the installation job that can be used to
  • # query the installation state.
  • job(jobId: UUID!): InstallationJob
  • }