Top "Cypher" questions

Cypher is a graph query language for Neo4j and AgensGraph.

Neo4j - Match by multiple relationship types

I want to match between entities by multiple relationship types. Is it possible to say the following query: match (Yoav:…

neo4j cypher
Storing data as an array/list on neo4j property

I am fairly new to Neo4j and have the following problem at hand. I am trying to develop a …

graph neo4j cypher graph-databases
Order nodes by relationship count --> ThisShouldNotHappenError

In a Neo4j database with a couple of nodes and relationships, I am trying to find out the most "…

neo4j cypher
neo4j: What is the syntax to set cypher query parameters in the browser interface?

I am trying to run queries from the neo4j browser to reproduce results from my neo4j-javascript-driver client. What …

neo4j cypher
Difference between merge and create unique in Neo4j

I'm trying to figure out what is the difference between MERGE and CREATE UNIQUE. I know these features: MERGE I'm …

merge neo4j cypher
Get node by property value neo4j

How can i get node by propery value? I mean something like that: I'll tried match (n) where has (n.…

neo4j cypher
Neo4j Cypher WITH is required between CREATE and MATCH

I want to execute several queries at the same time on the browser console, here are my requests : CREATE (newNode1:…

neo4j cypher
Neo4j - convert set of node's attributes from string to int

If I have a set of nodes with the same attributes in Neo4j, is there a way to convert …

string neo4j integer cypher
In Cypher, how can I create a relationship if it doesn't exist; update property if it does

In Cypher in Neo4J, given two nodes, if there's no relationship between them, I'd like to create a relationship (…

neo4j graph-databases cypher
What is the difference between multiple MATCH clauses and a comma in a Cypher query?

In a Cypher query language for Neo4j, what is the difference between one MATCH clause immediately following another like …

neo4j cypher