Skip to content

Commit 303fbe0

Browse files
author
Boris
committed
refactor: fix start arg
1 parent d46ad7a commit 303fbe0

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

example/src/schema/types/queue/activeJobs.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ export function createActiveJobsFC({ JobTC }) {
44
return {
55
type: [JobTC],
66
args: {
7-
tart: {
7+
start: {
88
type: 'Int',
99
defaultValue: 0,
1010
},

example/src/schema/types/queue/completedJobs.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ export function createCompletedJobsFC({ JobTC }) {
44
return {
55
type: [JobTC],
66
args: {
7-
tart: {
7+
start: {
88
type: 'Int',
99
defaultValue: 0,
1010
},

example/src/schema/types/queue/delayedJobs.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ export function createDelayedJobsFC({ JobTC }) {
44
return {
55
type: [JobTC],
66
args: {
7-
tart: {
7+
start: {
88
type: 'Int',
99
defaultValue: 0,
1010
},

example/src/schema/types/queue/failedJobs.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ export function createFailedJobsFC({ JobTC }) {
44
return {
55
type: [JobTC],
66
args: {
7-
tart: {
7+
start: {
88
type: 'Int',
99
defaultValue: 0,
1010
},

example/src/schema/types/queue/waitingJobs.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ export function createWaitingJobsFC({ JobTC }) {
44
return {
55
type: [JobTC],
66
args: {
7-
tart: {
7+
start: {
88
type: 'Int',
99
defaultValue: 0,
1010
},

0 commit comments

Comments
 (0)