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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

31 lines
932 B
Ruby
Raw Normal View History

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