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.
869 870 871 872 873 874 |
# File 'lib/graphql/schema/field.rb', line 869 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.
876 877 878 |
# File 'lib/graphql/schema/field.rb', line 876 def added_extras @added_extras end |
#arguments ⇒ Object
Returns the value of attribute arguments.
876 877 878 |
# File 'lib/graphql/schema/field.rb', line 876 def arguments @arguments end |
#memos ⇒ Object
Returns the value of attribute memos.
876 877 878 |
# File 'lib/graphql/schema/field.rb', line 876 def memos @memos end |
#object ⇒ Object
Returns the value of attribute object.
876 877 878 |
# File 'lib/graphql/schema/field.rb', line 876 def object @object end |