Cypher基本指令学习1

Posted laofang

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Cypher基本指令学习1相关的知识,希望对你有一定的参考价值。

1、查询节点
查询所有节点match (n) return n
查询带有标签的节点 match(movie:Flyer) return movie.name
查询关联节点(查询A导演的所有电影) match(director{name:"A"})--(movie) retuen movie.name


2、创建节点
创建单个/多个节点 create (n),(m)
创建带(多个)标签的节点 create (n:Person:Swedish)
创建同时带标签和属性的节点 create (n:Person {name:Anders,title:Developer})
创建关系并设置属性 match (a:Person),(b:Person)
                   where a.name=Node A AND b.name=Node B
                   create (a)-[r:RELTYPE {name:a.name+<->+b.name}]->(b)
                   return r

3、删除节点关系 delete
删除所有节点和关系 match (n) detach delete n
删除一个节点及其所有关系 match (n {name:Andres}) detach delete n

4、删除属性和标签
删除一个属性  match (andres {name:Andres})
              remove andres.age
              return andres
删除节点的一个/多个标签 match (n {name:Peter})
                        remove n:Person:Swedish
                        return n

 

以上是关于Cypher基本指令学习1的主要内容,如果未能解决你的问题,请参考以下文章

Neo4j Cypher 语言学习

Neo4j数据库——Cypher语言初学

知识图谱Neo4j Cypher查询语言详解

Neo4J入门笔记[1]---安装以及Cypher基本语法

JSP学习笔记:JSP语法和指令

Neo4j的查询语法笔记