summaryrefslogtreecommitdiff
path: root/app/graphql/types/jira_users_mapping_input_type.rb
blob: 37fd05370c00cca6c8544e5c12ec3555a2e6feb7 (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 :jira_account_id,
             GraphQL::Types::String,
             required: true,
             description: 'Jira account ID of the user.'
    argument :gitlab_id,
             GraphQL::Types::Int,
             required: false,
             description: 'ID of the GitLab user.'
  end
end