debian-mirror-gitlab/app/graphql/types/jira_users_mapping_input_type.rb

17 lines
454 B
Ruby
Raw Normal View History

2020-07-28 23:09:34 +05:30
# frozen_string_literal: true
module Types
class JiraUsersMappingInputType < BaseInputObject
graphql_name 'JiraUsersMappingInputType'
argument :jira_account_id,
GraphQL::STRING_TYPE,
required: true,
2021-03-11 19:13:27 +05:30
description: 'Jira account ID of the user.'
2020-07-28 23:09:34 +05:30
argument :gitlab_id,
GraphQL::INT_TYPE,
required: false,
2021-03-11 19:13:27 +05:30
description: 'Id of the GitLab user.'
2020-07-28 23:09:34 +05:30
end
end