Skip to content

Commit

Permalink
feat(recover): update description
Browse files Browse the repository at this point in the history
  • Loading branch information
germainvictor committed May 20, 2021
1 parent 8520397 commit 299749d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion lib/graphql/job/recover.js
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ function recoverJobDefinition(graphqlTypes, models) {
var _this = this;
return {
type: graphqlTypes.outputTypes.job,
description: 'Allows a job to be recoverable',
description: 'Recover a job by putting it back in the queue with the processing information already acquired',
args: {
id: {
type: new graphql_1.GraphQLNonNull(graphql_1.GraphQLInt)
Expand Down
3 changes: 2 additions & 1 deletion src/graphql/job/recover.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,8 @@ export default function recoverJobDefinition(
): CustomMutationConfiguration {
return {
type: graphqlTypes.outputTypes.job,
description: 'Allows a job to be recoverable',
description:
'Recover a job by putting it back in the queue with the processing information already acquired',
args: {
id: {
type: new GraphQLNonNull(GraphQLInt),
Expand Down

0 comments on commit 299749d

Please sign in to comment.