OBJECT
BackgroundJob
Background Job
# GraphQL Schema definition
1 type BackgroundJob { 2 # how many times the job was tried to be processed. By default the job is not 3 # retried on error. 4 Int : 5 JSONDate! : 6 # error which made the job fail 7 String : 8 # not null when exception encounered during processing the job 9 JSONDate : 10 # populated if the background job was invoked by form configuration 11 String : 12 ID! : 13 # job label 14 String : 15 JSONDate : 16 # which queue is used to process the job 17 String! : 18 # populated if the background job was invoked by form configuration 19 ID : 20 # populated if the background job was invoked by form configuration 21 String : 22 JSONDate! : 23 # populated if the background job was invoked by form configuration 24 String : 25 # populated if the background job was invoked by form configuration 26 String : 27 JSONDate! : 28 }