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.
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_extras ⇒ Object
Returns the value of attribute added_extras.
824 825 826 |
# File 'lib/graphql/schema/field.rb', line 824 def added_extras @added_extras end |
#arguments ⇒ Object
Returns the value of attribute arguments.
824 825 826 |
# File 'lib/graphql/schema/field.rb', line 824 def arguments @arguments end |
#memos ⇒ Object
Returns the value of attribute memos.
824 825 826 |
# File 'lib/graphql/schema/field.rb', line 824 def memos @memos end |
#object ⇒ Object
Returns the value of attribute object.
824 825 826 |
# File 'lib/graphql/schema/field.rb', line 824 def object @object end |