Class: GraphQL::Schema::Field::ExtendedState
- Inherits:
-
Object
- Object
- GraphQL::Schema::Field::ExtendedState
- Defined in:
- lib/graphql/schema/field.rb
Instance Attribute Summary collapse
-
#added_extras ⇒ Object
Returns the value of attribute added_extras.
-
#arguments ⇒ Object
Returns the value of attribute arguments.
-
#memos ⇒ Object
Returns the value of attribute memos.
-
#object ⇒ Object
Returns the value of attribute object.
Instance Method Summary collapse
-
#initialize(args, object) ⇒ ExtendedState
constructor
A new instance of ExtendedState.
Constructor Details
#initialize(args, object) ⇒ ExtendedState
Returns a new instance of ExtendedState.
854 855 856 857 858 859 |
# File 'lib/graphql/schema/field.rb', line 854 def initialize(args, object) @arguments = args @object = object @memos = nil @added_extras = nil end |
Instance Attribute Details
#added_extras ⇒ Object
Returns the value of attribute added_extras.
861 862 863 |
# File 'lib/graphql/schema/field.rb', line 861 def added_extras @added_extras end |
#arguments ⇒ Object
Returns the value of attribute arguments.
861 862 863 |
# File 'lib/graphql/schema/field.rb', line 861 def arguments @arguments end |
#memos ⇒ Object
Returns the value of attribute memos.
861 862 863 |
# File 'lib/graphql/schema/field.rb', line 861 def memos @memos end |
#object ⇒ Object
Returns the value of attribute object.
861 862 863 |
# File 'lib/graphql/schema/field.rb', line 861 def object @object end |