gitlab-org--gitlab-foss/app/graphql/resolvers/tree_resolver.rb

31 lines
941 B
Ruby

# frozen_string_literal: true
module Resolvers
class TreeResolver < BaseResolver
type Types::Tree::TreeType, null: true
calls_gitaly!
argument :path, GraphQL::Types::String,
required: false,
default_value: '',
description: 'Path to get the tree for. Default value is the root of the repository.'
argument :recursive, GraphQL::Types::Boolean,
required: false,
default_value: false,
description: 'Used to get a recursive tree. Default is false.'
argument :ref, GraphQL::Types::String,
required: false,
default_value: :head,
description: 'Commit ref to get the tree for. Default value is HEAD.'
alias_method :repository, :object
def resolve(**args)
return unless repository.exists?
repository.tree(args[:ref], args[:path], recursive: args[:recursive])
end
end
end