Head's Up! These forums are read-only. All users and content have migrated. Please join us at community.neo4j.com.
09-08-2022 01:00 AM
Hi everyone,
i would like to ask if i convert (type cast) a id property from String to Long (using a cypher like this MATCH (p:Product) SET p.quantity = toInteger(p.quantity); ) does it brake the corresponding relationships the id property is already involved? Thanks in advance!!!!
Solved! Go to Solution.
09-08-2022 02:48 AM
It will not. The relationships are not based on property values, like keys in a relational database. The nodes are related with relationships that are created between two nodes. You need to delete the relation if it no longer applies. You can change any property, node label, or relationship type and the property still exists.
09-08-2022 02:48 AM
It will not. The relationships are not based on property values, like keys in a relational database. The nodes are related with relationships that are created between two nodes. You need to delete the relation if it no longer applies. You can change any property, node label, or relationship type and the property still exists.
All the sessions of the conference are now available online