Top "Cypher" questions

Cypher is a graph query language for Neo4j and AgensGraph.

get all relationships for a node with cypher

I would like to find out all the incoming and outgoing relationships for a node. I tried couple of queries …

neo4j cypher
Neo4j: How do I delete a specific relationship with cypher?

Lets say, I have an user: CREATE (n { name: 'Tamil' }) and 2 roles: CREATE (n { name: 'developer' } ) CREATE (n { name: 'tester' } ) …

neo4j cypher
how to add a property to existing node neo4j cypher?

i have created a new node labeled User CREATE (n:User) i want to add a name property to my …

neo4j cypher graph-databases
Add label to existing node with Cypher

How can I add a label to an existing node using a Cypher query?

neo4j cypher
How to count the number of relationships in Neo4j

I am using Neo4j 2.0 and using the following query to find out the count of number of a particular …

neo4j cypher
How to execute Cypher in a file?

I am working on windows. I have created a text file of Cypher query using notepad. How can I run …

neo4j cypher
neo4j find all nodes with matching properties

I have a relatively large set of nodes, and I want to find all pairs of nodes that have matching …

neo4j cypher
What's the Cypher script to delete a node by ID?

In SQL: Delete From Person Where ID = 1; In Cypher, what's the script to delete a node by ID? (Edited: ID = …

neo4j nosql cypher graph-databases
How can I return all properties for a node using Cypher?

I understand it is possible to use the wildcard (*) symbol to return all references in a Cypher query, such as: …

graph neo4j cypher
Return unique nodes in Cypher path query

I am trying to retrieve a unique set of elements linked to a given graph node. I have some nodes …

neo4j cypher