2019-09-04 21:01:54 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
module Resolvers
|
|
|
|
class TreeResolver < BaseResolver
|
2021-01-29 00:20:46 +05:30
|
|
|
type Types::Tree::TreeType, null: true
|
|
|
|
|
2021-04-17 20:07:23 +05:30
|
|
|
calls_gitaly!
|
|
|
|
|
2019-09-04 21:01:54 +05:30
|
|
|
argument :path, GraphQL::STRING_TYPE,
|
|
|
|
required: false,
|
|
|
|
default_value: '',
|
2021-03-08 18:12:59 +05:30
|
|
|
description: 'The path to get the tree for. Default value is the root of the repository.'
|
2019-09-04 21:01:54 +05:30
|
|
|
argument :ref, GraphQL::STRING_TYPE,
|
|
|
|
required: false,
|
|
|
|
default_value: :head,
|
2021-03-08 18:12:59 +05:30
|
|
|
description: 'The commit ref to get the tree for. Default value is HEAD.'
|
2019-09-04 21:01:54 +05:30
|
|
|
argument :recursive, GraphQL::BOOLEAN_TYPE,
|
|
|
|
required: false,
|
|
|
|
default_value: false,
|
2021-03-08 18:12:59 +05:30
|
|
|
description: 'Used to get a recursive tree. Default is false.'
|
2019-09-04 21:01:54 +05:30
|
|
|
|
|
|
|
alias_method :repository, :object
|
|
|
|
|
|
|
|
def resolve(**args)
|
|
|
|
return unless repository.exists?
|
|
|
|
|
|
|
|
repository.tree(args[:ref], args[:path], recursive: args[:recursive])
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|