We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 57abf72 commit ad9afe6Copy full SHA for ad9afe6
src/types/job/Job.ts
@@ -14,7 +14,7 @@ export function getJobTC(sc: SchemaComposer<any>, opts: Options): ObjectTypeComp
14
name: 'String',
15
data: jobDataTC,
16
progress: 'Int',
17
- delay: 'Int',
+ delay: 'String',
18
timestamp: {
19
type: 'Date',
20
resolve: async (job: Job) => (job.timestamp ? job.timestamp : null),
@@ -29,7 +29,7 @@ export function getJobTC(sc: SchemaComposer<any>, opts: Options): ObjectTypeComp
29
name: `${typePrefix}JobOptionsOutput`,
30
fields: {
31
priority: 'Int',
32
33
attempts: 'Int',
34
repeat: createRepeatOptionsTC(sc, opts),
35
backoff: 'JSON', // | TODO: BackoffOptions
0 commit comments