|
|
@@ -1662,6 +1662,8 @@ export type Job = Node & {
|
|
|
error?: Maybe<Scalars['JSON']>;
|
|
|
isSettled: Scalars['Boolean'];
|
|
|
duration: Scalars['Int'];
|
|
|
+ retries: Scalars['Int'];
|
|
|
+ attempts: Scalars['Int'];
|
|
|
};
|
|
|
|
|
|
export type JobFilterParameter = {
|
|
|
@@ -1673,6 +1675,8 @@ export type JobFilterParameter = {
|
|
|
progress?: Maybe<NumberOperators>;
|
|
|
isSettled?: Maybe<BooleanOperators>;
|
|
|
duration?: Maybe<NumberOperators>;
|
|
|
+ retries?: Maybe<NumberOperators>;
|
|
|
+ attempts?: Maybe<NumberOperators>;
|
|
|
};
|
|
|
|
|
|
export type JobList = PaginatedList & {
|
|
|
@@ -1702,6 +1706,8 @@ export type JobSortParameter = {
|
|
|
queueName?: Maybe<SortOrder>;
|
|
|
progress?: Maybe<SortOrder>;
|
|
|
duration?: Maybe<SortOrder>;
|
|
|
+ retries?: Maybe<SortOrder>;
|
|
|
+ attempts?: Maybe<SortOrder>;
|
|
|
};
|
|
|
|
|
|
/**
|
|
|
@@ -8198,7 +8204,7 @@ export type GetServerConfigQuery = { globalSettings: (
|
|
|
|
|
|
export type JobInfoFragment = (
|
|
|
{ __typename?: 'Job' }
|
|
|
- & Pick<Job, 'id' | 'createdAt' | 'startedAt' | 'settledAt' | 'queueName' | 'state' | 'isSettled' | 'progress' | 'duration' | 'data' | 'result' | 'error'>
|
|
|
+ & Pick<Job, 'id' | 'createdAt' | 'startedAt' | 'settledAt' | 'queueName' | 'state' | 'isSettled' | 'progress' | 'duration' | 'data' | 'result' | 'error' | 'retries' | 'attempts'>
|
|
|
);
|
|
|
|
|
|
export type GetJobInfoQueryVariables = Exact<{
|