OBJECT

ScrapingJobQueue

Provides access to values in the scraping job queue

  • type ScrapingJobQueue 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 scrape context that can be used to
  • # query the scrape context.
  • job(jobId: UUID!): ScrapingJob
  • }