FileProcessingJob
FileProcessingJob
The jobs to be processed by the post-processing service
| Field | Argument | Type | Description |
|---|---|---|---|
| nodeId | ID! | A globally unique identifier. Can be used in various places throughout the system to identify this single value. | |
| id | UUID! | The uuid of the job. | |
| orgId | UUID! | The uuid of the organization who holds the file. | |
| spaceId | UUID | The id of the space that screen_group belong to. | |
| fileId | UUID! | The uuid of the file. | |
| jobType | JobType | The type of file processing job | |
| jobTargetOutput | JobTargetOutput | The target output format of the file | |
| info | JSON | Job/file information for file processing | |
| status | JobStatus! | ||
| retries | Int! | ||
| lastRetryAt | Datetime | ||
| error | String | ||
| createdAt | Datetime | ||
| finishedAt | Datetime | ||
| startedAt | Datetime | ||
| orgByOrgId | Org | Reads a single `Org` that is related to this `FileProcessingJob`. | |
| spaceBySpaceId | Space | Reads a single `Space` that is related to this `FileProcessingJob`. | |
| fileByFileId | File | Reads a single `File` that is related to this `FileProcessingJob`. | |
| fileOutputsByFileProcessingJobId | FileOutputsConnection! | Reads and enables pagination through a set of `FileOutput`. | |
| first | Int | Only read the first `n` values of the set. | |
| last | Int | Only read the last `n` values of the set. | |
| offset | Int | Skip the first `n` values from our `after` cursor, an alternative to cursor based pagination. May not be used with `last`. | |
| before | Cursor | Read all values in the set before (above) this cursor. | |
| after | Cursor | Read all values in the set after (below) this cursor. | |
| orderBy | [FileOutputsOrderBy!] | The method to use when ordering `FileOutput`. | |
| condition | FileOutputCondition | A condition to be used in determining which values should be returned by the collection. | |
| filter | FileOutputFilter | A filter to be used in determining which values should be returned by the collection. | |