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

31 lines
941 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,
default_value: :head,
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?
repository.tree(args[:ref], args[:path], recursive: args[:recursive])
end
end
end