cancel
Showing results for 
Search instead for 
Did you mean: 

Head's Up! These forums are read-only. All users and content have migrated. Please join us at community.neo4j.com.

Forum Posts

Beta Opportunity for Neo4j Workspace

Introducing Neo4j Workspace We’re inviting you to check out Neo4j Workspace. Workspace combines our most powerful graph tools (Data Importer, Bloom, and Browser) all in one place to help you get up and running with graph databases faster. For experie...

Screen Shot 2022-10-14 at 12.48.07 PM.png
TrevorS by Community Team
  • 855 Views
  • 1 replies
  • 0 kudos

About the Neo4j Graph Platform Category

The Neo4j Graph Platform includes the core database and all the technologies surrounding the database, making it useful and accessible for a lot of different users. When asking a question, please select a descriptive label that best matches your quer...

Neo4j-graph-database-to-graph-platform.png
yolande by Community Team
  • 1118 Views
  • 1 replies
  • 1 kudos

Resolved! Help needed with cypher query - combining

Hi, i have a trade network between the world countries with the various product codes represented as a relationship property. Furthermore, there are several node properties as well. My goal is to combine two cypher queries into one, where the new pro...

Why doesn't this relationship negate correctly?

MATCH (m ) -[r]- (n {nid:'123'}), p = shortestPath((m)-[*..10]-(n)) WHERE NOT((m)-[:similar]-(n)) RETURN p limit 5 I want to find the shortest path between m and n, but they should not be linked by the relationship 'similar'. The query above will re...

lingvisa by Graph Fellow
  • 541 Views
  • 5 replies
  • 0 kudos

Count number of Graphs in a DB / match result

As a Graph DB is a collection of Graphs (1-N), is there a simple way to return the number of Graphs? There are many possibilities to count nodes, properties and relationships, but don't seem to be able to find something on counting Graphs itself, and...

Female or Male number filtering

I am trying to filter females' and male relationships and get a table for both relations and find how many males and females are there? But My code is not helping me out to solve it> Any suggestions, I try with UNION ALL as well, didn't work for me ...

Jahid by Node
  • 382 Views
  • 2 replies
  • 2 kudos

Cypher Query- Last Node & Repetition Issue

Hi everyone, I have written a cypher query to calculate the sum of its next connected node, but for the lowest (last) node where there is no next connected node, how to make the below query work. match p=(a:RM)-[r1:transport]->(b:RM)-[r2:transport]->...

APOC TRIGGER - maybe a bug?

This was the Query I was looking for : And works good , "UNWIND $createdNodes AS e MATCH(n:User) with e, MAX(n.ID) as maxId Set e.ID = maxId + 1" But the fact that I have to make a MATCH again in order to retrieve the USER with the new ID increme...