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

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

module Types
  module Projects
    module Services
      # rubocop:disable Graphql/AuthorizeTypes
      class JiraProjectType < BaseObject
        graphql_name 'JiraProject'

        field :key, GraphQL::STRING_TYPE, null: false,
              description: 'Key of the Jira project.'
        field :project_id, GraphQL::INT_TYPE, null: false,
              description: 'ID of the Jira project.',
              method: :id
        field :name, GraphQL::STRING_TYPE, null: true,
              description: 'Name of the Jira project.'
      end
      # rubocop:enable Graphql/AuthorizeTypes
    end
  end
end