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

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

module Types
  class JiraUsersMappingInputType < BaseInputObject
    graphql_name 'JiraUsersMappingInputType'

    argument :gitlab_id,
             GraphQL::Types::Int,
             required: false,
             description: 'ID of the GitLab user.'
    argument :jira_account_id,
             GraphQL::Types::String,
             required: true,
             description: 'Jira account ID of the user.'
  end
end