Class: Neo4j::Core::QueryClauses::OnCreateSetClause
- Defined in:
- lib/neo4j-core/query_clauses.rb
Direct Known Subclasses
Constant Summary
Constants included from CypherTranslator
CypherTranslator::EMPTY_PROPS, CypherTranslator::SANITIZE_ESCAPED_REGEXP
Instance Attribute Summary
Attributes inherited from Clause
Instance Method Summary collapse
-
#initialize(*args) ⇒ OnCreateSetClause
constructor
A new instance of OnCreateSetClause.
Methods inherited from SetClause
clause_string, #from_key_and_value
Methods inherited from Clause
#attributes_from_key_and_value, from_args, #from_hash, #from_string, #label_from_key_and_value, #node_from_key_and_value, to_cypher, #value, #var_from_key_and_value
Methods included from CypherTranslator
#create_escape_value, #cypher_prop_list, #cypher_string, #escape_quotes, #escape_value, #label_string, #prop_identifier, #sanitize_escape_sequences, sanitized_column_names, translate_response
Constructor Details
#initialize(*args) ⇒ OnCreateSetClause
Returns a new instance of OnCreateSetClause.
430 431 432 433 |
# File 'lib/neo4j-core/query_clauses.rb', line 430 def initialize(*args) super @options[:set_props] = false end |