Neo4j之Cypher查询(1) START p=node(*) where has(p.name) and p.name="张三"return id(p),p.name? as name,p.sex ? as sexlimit 2
?