Class: GraphQL::Types::Relay::BaseField

Inherits:
Schema::Field show all
Defined in:
lib/graphql/types/relay/base_field.rb

Instance Attribute Summary

Attributes inherited from Schema::Field

#deprecation_reason, #description, #method_str, #method_sym, #name, #owner

Instance Method Summary collapse

Methods inherited from Schema::Field

#accessible?, #authorized?, #complexity, #connection?, from_options, #resolve_field, #resolve_field_method, #resolver, #scoped?, #type, #visible?

Methods included from Schema::Member::HasPath

#path

Methods included from Schema::Member::HasArguments

#add_argument, #argument, #argument_class, #arguments, #own_arguments

Methods included from Schema::Member::CachedGraphQLDefinition

#graphql_definition, #initialize_copy

Constructor Details

#initialize(edge_class: nil, **rest, &block) ⇒ BaseField

Returns a new instance of BaseField



7
8
9
10
# File 'lib/graphql/types/relay/base_field.rb', line 7

def initialize(edge_class: nil, **rest, &block)
  @edge_class = edge_class
  super(**rest, &block)
end

Instance Method Details

#to_graphqlObject



12
13
14
15
16
17
18
# File 'lib/graphql/types/relay/base_field.rb', line 12

def to_graphql
  field = super
  if @edge_class
    field.edge_class = @edge_class
  end
  field
end