美文网首页
[Neo4J] start Cypher查询语言(CQL) 语法

[Neo4J] start Cypher查询语言(CQL) 语法

作者: 爱上落入尘世间的你 | 来源:发表于2020-03-22 23:26 被阅读0次

    通过索引查找节点或者关系

    查找节点: node:index-name(key=value)

    start n = node:nodes(name = 'a')
    return n
    

    查找关系: relationship:index-name(key=value)

    start n = relationship:rels(name = 'a')
    return n
    

    相关文章

      网友评论

          本文标题:[Neo4J] start Cypher查询语言(CQL) 语法

          本文链接:https://www.haomeiwen.com/subject/szibyhtx.html