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
  • 998 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
  • 1210 Views
  • 1 replies
  • 1 kudos

All possible combinations of 6 player games

I have a game where players enter a queue/lobby and wait to be matched into a game. Each game must have 6 players in total, the gender balance has to be even, 3 males, 3 females. I have a graph of nodes of type "Player" where the nodes are players an...

Parallel in all socket while apoc.periodic.iterate

There're two socket of cpu with each 8 core & 16 thread in my computer (i.e., total 2*8 core and 16*2 thread). When I was running  apoc.periodic.iterate with parallel = TRUE, for example,   CALL apoc.periodic.iterate( 'MATCH (n) RETURN id(n) AS id', ...

apoc.periodic.iterate fail in large data (640 million nodes)

The query is the following (there're 640 million process nodes)     CALL apoc.periodic.iterate("MATCH(e:Process) MATCH (f:Process{parentID:e.pid})    RETURN  e,f", "CREATE(e)-[r:create_process_to]->(f)", {batchSize:5000, parallel: true}) YIELD batch ...

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
  • 1210 Views
  • 1 replies
  • 1 kudos

Neo4j Desktop

Hi, I have installed the neo4j app for the desktop and I can't run it. I try to remove and reinstall the app and the same problem. It running in the task manager but not on screen. What should I do? 

Dany by Node
  • 146 Views
  • 0 replies
  • 0 kudos

Problems running Graph Data Science Playground (GDS, NEuler)

I've been using Neo4j together with the graph data science playground (gds) app in teaching for many years. This semester (Fall 2022), the students are installing Neo4j Desktop 1.5.6 and the data science playground app is in version 0.1.55, I observe...

desa by Node
  • 806 Views
  • 6 replies
  • 0 kudos

GUI For Cypher And Graphical Queries

Is there a graphical interface for Cypher queries or for queries into Neo4j graph topology in general? The Microfocus UCMDB product -- based on a graph database -- has an excellent graphical interface for its graph database topology queries, the Topo...

Failed to upgrade Neo4j version from 4.4.3 to 5.2.0

Neo4j version upgrade failed with below exception. The selected target store format 'AF4.3.0' (introduced in 4.3.0) is no longer supported 2023-01-16 06:07:23.263+0000 WARN Unrecognized setting. No declared setting with name: apoc.export.file.enabled...

How to get execute time in bloom neoj4

Hi All, I am trying to compare performance of Power BI and Bloom neo4j (free version).  Is there a way to get execute time of cypher query and graph in perspective?  Please help if anyone has the answer. Regards Vaishali

Using apoc.do.when

Not sure if this is the correct location for this question, but I am trying to use apoc.do.when with my neo4j version 5 instance. I have been trying to use the docs to create my query but for some reason one of my parameters is not being changed corr...

Skip nodes in a path

Hi, I have the following scenario: In all cases the returned path should be the one that is coloured. When the middle Service is as in Case 1, then the returned path should only consider the top and bottom level services and not the middle one. Is t...

skip.png

Resolved! Find all paths from node

Hello. I have graph:   CREATE (a:Item {id: '1'}), (b:Item {id: '2'}), (c:Item {id: '3'}), (d:Item {id: '4'}), (e:Item {id: '5'}) MATCH (a:Item {id: '5'}), (b:Item {id: '4'}) CREATE (a)-[r:RELATED_TO {type: 'type1'}]->(b) MATCH (a:Item {id: '4}), (b...

Mutiple CALL statements

Hello everyone, I'm in trouble when trying to use multiple CALL statements in neo4j. The problem is when the first CALL statement returns null value, the following CALL statement don't execute. Does anyone know how to solve this. I appreciate for any...