Welcome to mirror list, hosted at ThFree Co, Russian Federation.

board_issuable_input_base_type.rb « boards « types « graphql « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 326f73846d09af27859f1b0fabde7d04cb6cc8a0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# frozen_string_literal: true

module Types
  module Boards
    # Common arguments that we can be used to filter boards epics and issues
    class BoardIssuableInputBaseType < BaseInputObject
      argument :label_name, [GraphQL::Types::String, null: true],
               required: false,
               description: 'Filter by label name.'

      argument :author_username, GraphQL::Types::String,
               required: false,
               description: 'Filter by author username.'

      argument :my_reaction_emoji, GraphQL::Types::String,
               required: false,
               description: 'Filter by reaction emoji applied by the current user.'
    end
  end
end