Cypher Query returning value -


is possible type cast like

start n=node(0) match n-[:my_events]->m      has(m.node_type) , has(m.day1) ,      m.node_type='schdule_node' ,      m.day1<>''         return id(m) order integer.parseint(m.day1) asc 

toint appears work on http://console.neo4j.org

start n=node(0) match n-[:my_events]->m      has(m.node_type) , has(m.day1) ,      m.node_type='schdule_node' ,      m.day1<>''  return id(m) order toint(m.day1) 

Comments

Popular posts from this blog

css - I want to align grid in center -

Contact Form PHP Email Script -

python - SWIG function not printing output -