summaryrefslogtreecommitdiff
path: root/app/graphql/types/branch_type.rb
blob: b788ba797692b5b47e26ba79c471e5d1f39c8050 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# frozen_string_literal: true

module Types
  # rubocop: disable Graphql/AuthorizeTypes
  class BranchType < BaseObject
    graphql_name 'Branch'

    field :name,
          GraphQL::STRING_TYPE,
          null: false,
          description: 'Name of the branch.'

    field :commit, Types::CommitType,
          null: true, resolver: Resolvers::BranchCommitResolver,
          description: 'Commit for the branch.'
  end
  # rubocop: enable Graphql/AuthorizeTypes
end