Skip to content
Snippets Groups Projects

Add several backend filters to the Vue version of the merge request list

All threads resolved!
6 files
+ 276
0
Compare changes
  • Side-by-side
  • Inline
Files
6
@@ -33,6 +33,30 @@ def self.accept_reviewer
description: 'Filter by reviewer presence. Incompatible with reviewerUsername.'
end
argument :approver, GraphQL::Types::String,
required: false,
as: :approver_usernames,
description: 'Usernames of possible approvers.'
argument :release, GraphQL::Types::String,
required: false,
as: :release_tag,
description: 'Filter by release tag.'
argument :approved_by, GraphQL::Types::String,
required: false,
as: :approved_by_usernames,
description: 'Username of the approver.'
argument :merged_by, GraphQL::Types::String,
required: false,
as: :merge_user_username,
description: 'Username of the merger.'
argument :my_reaction_emoji, GraphQL::Types::String,
required: false,
description: 'Filter by your reaction emoji.'
argument :iids, [GraphQL::Types::String],
required: false,
description: 'Array of IIDs of merge requests, for example `[1, 2]`.'
Loading