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

android - Get AccessToken using signpost OAuth without opening a browser (Two legged Oauth) -

org.mockito.exceptions.misusing.InvalidUseOfMatchersException: mockito -

google shop client API returns 400 bad request error while adding an item -