Cypher Query返回值

时间:2014-03-24 07:40:23

标签: cypher

是否可以输入类似

的强制转换
start n=node(0) match n-[:My_Events]->m where 
    has(m.Node_Type) and has(m.Day1) and 
    m.Node_Type='Schdule_Node' and 
    m.Day1<>'' 
       return id(m) ORDER BY Integer.parseInt(m.Day1) ASC

1 个答案:

答案 0 :(得分:0)

toInt似乎适用于http://console.neo4j.org

start n=node(0) match n-[:My_Events]->m
where 
    has(m.Node_Type) and has(m.Day1) and 
    m.Node_Type='Schdule_Node' and 
    m.Day1<>'' 
return id(m) ORDER BY toInt(m.Day1)