Class: GraphQL::Schema::Field::ExtendedState

Inherits:
Object
  • Object
show all
Defined in:
lib/graphql/schema/field.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(args, object) ⇒ ExtendedState

Returns a new instance of ExtendedState.



817
818
819
820
821
822
# File 'lib/graphql/schema/field.rb', line 817

def initialize(args, object)
  @arguments = args
  @object = object
  @memos = nil
  @added_extras = nil
end

Instance Attribute Details

#added_extrasObject

Returns the value of attribute added_extras.



824
825
826
# File 'lib/graphql/schema/field.rb', line 824

def added_extras
  @added_extras
end

#argumentsObject

Returns the value of attribute arguments.



824
825
826
# File 'lib/graphql/schema/field.rb', line 824

def arguments
  @arguments
end

#memosObject

Returns the value of attribute memos.



824
825
826
# File 'lib/graphql/schema/field.rb', line 824

def memos
  @memos
end

#objectObject

Returns the value of attribute object.



824
825
826
# File 'lib/graphql/schema/field.rb', line 824

def object
  @object
end