BackgroundJobEventData
Data representing an background job event (see BackgroundJobStatus, could be received, successful, failed).
type BackgroundJobEventData {
event: BackgroundJobEvent!
jobId: ID!
jobName: String!
user: User
}
Fields
BackgroundJobEventData.event
● BackgroundJobEvent!
non-null union
The callback event data
BackgroundJobEventData.jobId
● ID!
non-null scalar
The background job id
BackgroundJobEventData.jobName
● String!
non-null scalar
The background job name
BackgroundJobEventData.user
● User
object
The ID of the user that requested the background job.
Returned By
backgroundJobEvent
subscription