Skip to content

jobInfo

Information about a job running on CDM. Note that some types of jobs cannot be queries using this field. Refer to JobType enum to see which jobs types are available. Only users with Admin or Owner roles are allowed to access the field.

Arguments

Argument Type Description
input (required) JobInfoRequest! Request to retrieve information about a job.

Returns

JobInfo!

Sample

query JobInfo($input: JobInfoRequest!) {
  jobInfo(input: $input) {
    status
  }
}
{
  "input": {
    "additionalInfo": {}
  }
}
{
  "data": {
    "jobInfo": {
      "status": "FAILURE"
    }
  }
}