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

repository_type.rb « types « graphql « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 5987467e1ea3d1aa94f167697938e9e3936cad68 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
# frozen_string_literal: true

module Types
  class RepositoryType < BaseObject
    graphql_name 'Repository'

    authorize :download_code

    field :root_ref, GraphQL::STRING_TYPE, null: true
    field :empty, GraphQL::BOOLEAN_TYPE, null: false, method: :empty?
    field :exists, GraphQL::BOOLEAN_TYPE, null: false, method: :exists?
    field :tree, Types::Tree::TreeType, null: true, resolver: Resolvers::TreeResolver
  end
end