summaryrefslogtreecommitdiff
path: root/app/graphql/types/branch_type.rb
blob: b15038a46def8cdcc162354717630c34e2533434 (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