Welcome to mirror list, hosted at ThFree Co, Russian Federation.

tree_resolver.rb « resolvers « graphql « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 7a70c35897d0e8b175c2ec4c1fdc5af383bc4b67 (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
# frozen_string_literal: true

module Resolvers
  class TreeResolver < BaseResolver
    type Types::Tree::TreeType, null: true

    argument :path, GraphQL::STRING_TYPE,
              required: false,
              default_value: '',
              description: 'The path to get the tree for. Default value is the root of the repository.'
    argument :ref, GraphQL::STRING_TYPE,
              required: false,
              default_value: :head,
              description: 'The commit ref to get the tree for. Default value is HEAD.'
    argument :recursive, GraphQL::BOOLEAN_TYPE,
              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