summaryrefslogtreecommitdiff
path: root/app/graphql/resolvers/tree_resolver.rb
blob: 70b4d81845c4c77354ed1e7f0ac58e08317118ea (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
# 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: 'The path to get the tree for. Default value is the root of the repository.'
    argument :ref, GraphQL::Types::String,
              required: false,
              default_value: :head,
              description: 'The commit ref to get the tree for. Default value is HEAD.'
    argument :recursive, GraphQL::Types::Boolean,
              required: false,
              default_value: false,
              description: 'Used to get a recursive tree. Default is false.'

    alias_method :repository, :object

    def resolve(**args)
      return unless repository.exists?

      repository.tree(args[:ref], args[:path], recursive: args[:recursive])
    end
  end
end