INTERFACE

JobQueue

Provides queries for a job queue

  • interface 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!]!
  • }