Skip to main content

Job

A background job.

type Job implements JobInterface {
completedAt: String
createdAt: String
id: Int
inProgressLock: Boolean
metadata: [JobMetadata]
progress: JobProgress
type: String
}

Fields

Job.completedAt ● String scalar common

When the job completed.

Job.createdAt ● String scalar common

When the job was created.

Job.id ● Int scalar common

The unique identifier for the job.

Job.inProgressLock ● Boolean scalar common

Whether the job currently holds an in-progress lock.

Job.metadata ● [JobMetadata] list object common

Additional metadata for the job.

Job.progress ● JobProgress object common

The current progress of the job.

Job.type ● String scalar common

The job type.

Interfaces

JobInterface interface common

Common fields shared by all job types.