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

base_edge.rb « types « graphql « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: f4409c983f8819eba88777354ce4cee80d1d95d8 (plain)
1
2
3
4
5
6
7
# frozen_string_literal: true

module Types
  class BaseEdge < GraphQL::Types::Relay::BaseEdge
    field_class Types::BaseField
  end
end