Neo4j - convert set of node's attributes from string to int -


this question has answer here:

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

Popular posts from this blog

sublimetext3 - what keyboard shortcut is to comment/uncomment for this script tag in sublime -

java - No use of nillable="0" in SOAP Webservice -

ubuntu - Laravel 5.2 quickstart guide gives Not Found Error -