summaryrefslogtreecommitdiff
path: root/app/graphql/types/tree/tree_entry_type.rb
blob: d5cfb898aea6c34a2eaa4ad76dae7c1bc6fceb3b (plain)
1
2
3
4
5
6
7
8
9
10
11
# frozen_string_literal: true
module Types
  module Tree
    class TreeEntryType < BaseObject
      implements Types::Tree::EntryType

      graphql_name 'TreeEntry'
      description 'Represents a directory'
    end
  end
end