Class: ActiveGraph::Core::QueryClauses::CreateClause

Inherits:
Clause
  • Object
show all
Defined in:
lib/active_graph/core/query_clauses.rb

Direct Known Subclasses

CreateUniqueClause, MergeClause

Constant Summary collapse

KEYWORD =
'CREATE'

Constants inherited from Clause

ActiveGraph::Core::QueryClauses::Clause::AND, ActiveGraph::Core::QueryClauses::Clause::COMMA_SPACE, ActiveGraph::Core::QueryClauses::Clause::PRETTY_NEW_LINE, ActiveGraph::Core::QueryClauses::Clause::UNDERSCORE

Instance Attribute Summary

Attributes inherited from Clause

#arg, #options, #param_vars_added, #params

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from Clause

#_nested_value_hash?, #_use_key_for_var?, #add_param, #add_params, #attributes_from_key_and_value, clause_string, from_arg, from_args, from_key_and_single_value, #initialize, keyword, keyword_downcase, #label_from_key_and_value, #node_from_key_and_value, paramaterize_key!, to_cypher, #value, #var_from_key_and_value

Constructor Details

This class inherits a constructor from ActiveGraph::Core::QueryClauses::Clause

Class Method Details

.clause_colorObject



452
453
454
# File 'lib/active_graph/core/query_clauses.rb', line 452

def clause_color
  ANSI::GREEN
end

.clause_joinObject



448
449
450
# File 'lib/active_graph/core/query_clauses.rb', line 448

def clause_join
  ', '
end

.clause_strings(clauses) ⇒ Object



444
445
446
# File 'lib/active_graph/core/query_clauses.rb', line 444

def clause_strings(clauses)
  clauses.map!(&:value)
end

Instance Method Details

#from_hash(hash) ⇒ Object



429
430
431
432
433
434
435
436
437
# File 'lib/active_graph/core/query_clauses.rb', line 429

def from_hash(hash)
  if hash.values.any? { |value| value.is_a?(Hash) }
    hash.map do |key, value|
      from_key_and_value(key, value)
    end
  else
    "(#{attributes_string(hash)})"
  end
end

#from_key_and_value(key, value) ⇒ Object



439
440
441
# File 'lib/active_graph/core/query_clauses.rb', line 439

def from_key_and_value(key, value)
  node_from_key_and_value(key, value, prefer: :label)
end

#from_string(value) ⇒ Object



421
422
423
# File 'lib/active_graph/core/query_clauses.rb', line 421

def from_string(value)
  value
end

#from_symbol(value) ⇒ Object



425
426
427
# File 'lib/active_graph/core/query_clauses.rb', line 425

def from_symbol(value)
  "(:#{value})"
end