Commit fc863389 authored by Alex Kalderimis's avatar Alex Kalderimis

Vale forbids the use of "params"

parent 1271dea1
...@@ -57,7 +57,7 @@ module IssueResolverArguments ...@@ -57,7 +57,7 @@ module IssueResolverArguments
description: 'Filter issues by the given issue types.', description: 'Filter issues by the given issue types.',
required: false required: false
argument :not, Types::Issues::NegatedIssueFilterInputType, argument :not, Types::Issues::NegatedIssueFilterInputType,
description: 'List of negated params.', description: 'Negated arguments.',
prepare: ->(negated_args, ctx) { negated_args.to_h }, prepare: ->(negated_args, ctx) { negated_args.to_h },
required: false required: false
end end
......
...@@ -10,7 +10,10 @@ module Types ...@@ -10,7 +10,10 @@ module Types
argument :not, NegatedEpicBoardIssueInputType, argument :not, NegatedEpicBoardIssueInputType,
required: false, required: false,
description: 'List of epic negated params. Warning: this argument is experimental and a subject to change in the future.' description: <<~DESC
Negated epic arguments.
Warning: this argument is experimental and a subject to change in the future.
DESC
argument :search, GraphQL::STRING_TYPE, argument :search, GraphQL::STRING_TYPE,
required: false, required: false,
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment