summaryrefslogtreecommitdiff
path: root/app/graphql/types/projects/services/jira_project_type.rb
blob: 0ff1b9d89032fed3b8cfcff30e09a052a0cd2f18 (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::Types::String, null: false,
              description: 'Key of the Jira project.'
        field :name, GraphQL::Types::String, null: true,
              description: 'Name of the Jira project.'
        field :project_id, GraphQL::Types::Int, null: false,
              description: 'ID of the Jira project.',
              method: :id
      end
      # rubocop:enable Graphql/AuthorizeTypes
    end
  end
end