Neo4j - convert set of node's attributes from string to int -
this question has answer here:
- neo4j cypher - string integer 1 answer
if have set of nodes same attributes in neo4j, there way convert type of attribute string int (or vice versa) of nodes?
how about
match (n:type) <filter if required> set n.strprop = toint(n.strprop)
and
match (n:type) <filter if required> set n.intprop = tostring(n.intprop)
Comments
Post a Comment