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

branch_type.rb « types « graphql « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: a861bcc4bb47f8751d2f954597ae4f3ca942ceba (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::Types::String,
          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