Class: Neo4j::Core::QueryClauses::CreateClause

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

Direct Known Subclasses

CreateUniqueClause, MergeClause

Constant Summary collapse

KEYWORD =
'CREATE'

Constants inherited from Clause

Neo4j::Core::QueryClauses::Clause::AND, Neo4j::Core::QueryClauses::Clause::COMMA_SPACE, Neo4j::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, #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 Neo4j::Core::QueryClauses::Clause

Class Method Details

.clause_colorObject



436
437
438
# File 'lib/neo4j-core/query_clauses.rb', line 436

def clause_color
  ANSI::GREEN
end

.clause_joinObject



432
433
434
# File 'lib/neo4j-core/query_clauses.rb', line 432

def clause_join
  ', '
end

.clause_strings(clauses) ⇒ Object



428
429
430
# File 'lib/neo4j-core/query_clauses.rb', line 428

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

Instance Method Details

#from_hash(hash) ⇒ Object



413
414
415
416
417
418
419
420
421
# File 'lib/neo4j-core/query_clauses.rb', line 413

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



423
424
425
# File 'lib/neo4j-core/query_clauses.rb', line 423

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

#from_string(value) ⇒ Object



405
406
407
# File 'lib/neo4j-core/query_clauses.rb', line 405

def from_string(value)
  value
end

#from_symbol(value) ⇒ Object



409
410
411
# File 'lib/neo4j-core/query_clauses.rb', line 409

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