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.
      855 856 857 858 859 860  | 
    
      # File 'lib/graphql/schema/field.rb', line 855 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.
      862 863 864  | 
    
      # File 'lib/graphql/schema/field.rb', line 862 def added_extras @added_extras end  | 
  
#arguments ⇒ Object
Returns the value of attribute arguments.
      862 863 864  | 
    
      # File 'lib/graphql/schema/field.rb', line 862 def arguments @arguments end  | 
  
#memos ⇒ Object
Returns the value of attribute memos.
      862 863 864  | 
    
      # File 'lib/graphql/schema/field.rb', line 862 def memos @memos end  | 
  
#object ⇒ Object
Returns the value of attribute object.
      862 863 864  | 
    
      # File 'lib/graphql/schema/field.rb', line 862 def object @object end  |