Module: ActiveGraph::Core::QueryExt
- Included in:
 - Query
 
- Defined in:
 - lib/active_graph/core/query_ext.rb
 
Instance Attribute Summary collapse
- 
  
    
      #proxy_chain_level  ⇒ Object 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
For instances where you turn a QueryProxy into a Query and then back to a QueryProxy with ‘#proxy_as`.
 
Instance Method Summary collapse
- 
  
    
      #proxy_as(model, var, optional = false)  ⇒ ActiveGraph::Node::Query::QueryProxy 
    
    
  
  
  
  
  
  
  
  
  
    
Creates a ActiveGraph::Node::Query::QueryProxy object that builds off of a Core::Query object.
 - 
  
    
      #proxy_as_optional(model, var)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    
Calls proxy_as with ‘optional` set true.
 
Instance Attribute Details
#proxy_chain_level ⇒ Object
For instances where you turn a QueryProxy into a Query and then back to a QueryProxy with ‘#proxy_as`
      21 22 23  | 
    
      # File 'lib/active_graph/core/query_ext.rb', line 21 def proxy_chain_level @proxy_chain_level end  | 
  
Instance Method Details
#proxy_as(model, var, optional = false) ⇒ ActiveGraph::Node::Query::QueryProxy
Creates a ActiveGraph::Node::Query::QueryProxy object that builds off of a Core::Query object.
      10 11 12 13  | 
    
      # File 'lib/active_graph/core/query_ext.rb', line 10 def proxy_as(model, var, optional = false) # TODO: Discuss whether it's necessary to call `break` on the query or if this should be left to the user. ActiveGraph::Node::Query::QueryProxy.new(model, nil, node: var, optional: optional, starting_query: self, chain_level: @proxy_chain_level) end  | 
  
#proxy_as_optional(model, var) ⇒ Object
Calls proxy_as with ‘optional` set true. This doesn’t offer anything different from calling ‘proxy_as` directly but it may be more readable.
      16 17 18  | 
    
      # File 'lib/active_graph/core/query_ext.rb', line 16 def proxy_as_optional(model, var) proxy_as(model, var, true) end  |