Top "Cypher" questions

Cypher is a graph query language for Neo4j and AgensGraph.

How to return relationship type with Neo4J's Cypher queries?

I am trying to get the relationship type of a very simple Cypher query, like the following MATCH (n)-[…

neo4j cypher
Return labels for a node using Cypher

How do I return all the labels for a node using a Cypher query? Note that I don't know the …

neo4j cypher
How to Update or change value in cypher neo4j

Is there any update query in cypher using which we can update the property of any node or relationship ? For …

java neo4j cypher
Neo4j - NOT IN query

The graph schema I have is (actors)-[:ACTED_IN]->(movies). I know how to find actors who …

neo4j cypher graph-databases
Cypher Neo4J - CASE Expression with MERGE

I'm trying to implement the logic in Cypher where, based on a particular condition (CASE Statement), I would create some …

merge neo4j logic case cypher
neo4j cypher: how to change the type of a relationship

I can't find a way to change a relationship type in Cypher. Is this operation possible at all? If not: …

neo4j cypher
Find neo4j nodes with more than one incoming relationship

I'm trying to find all the nodes with more than one incoming relationship. Given this data: a-[has]->…

neo4j cypher
Multiple unrelated queries in Neo4j Cypher?

Does http://localhost:7474/browser/ not support multiple unrelated queries? This code: MATCH (a {cond:'1'}), (b {cond:'x'}) CREATE …

neo4j cypher
Neo4j Bidirectional Relationship

Is there a way to create bidirectional relationship in Neo4j using Cypher? I would like the relationship to be …

neo4j cypher relationship bidirectional-relation
How to push values to property array Cypher-Neo4j

I am new to Neo4j,I have two nodes user and files with a relationship :contains, the relationship has …

arrays neo4j cypher neo4jphp