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

How to map mongodb data to neo4j

The project I am working on is planning to implement a new feature that is recommending products to the users(which are sellers in our case) based on their search and the stock they have. Currently, we are using MongoDB as database. To make the predi...

How to visaulzise graph in Python

Hie, So I have my data in Neo4j, is there a way to visulaize them in Python? I tried this(below image), but got blank output. The nodes I have are The property I was trying(as it said I had to pass in an attribute) Can someone help me with this. T...

3X_4_2_4278f85242b63c1f9f7bbec01be33b550c37dd91.png 3X_9_d_9d59ff4810014eeb681bd382033d48782d84ec75.png 3X_5_b_5ba52c5381499210878d25e1294fbc4a532507d1.png

Parallel matches from a single initial node

I have a specific query that will start from one node and then branch out and retrieve from several predefined unique paths with end nodes on each. I already know that the paths exist so there is no need to run optional match. However, each query wil...

Resolved! How to join two match statements?

The following query returns the error: variable not defined. MATCH (n:ID {start_marker: 1}) WITH DISTINCT collect(n.CASE_ID) AS start_marker MATCH (m:ID) WITH DISTINCT collect(m.CASE_ID) AS all CALL apoc.coll.subtract(all, start_marker) I understood...

Resolved! Performance Issues Merging Nodes

Hi, I have a database with 20 million nodes and 10 million relationships. I want to merge nodes that have the same code number property. My cypher is like this CALL apoc.periodic.iterate(" MATCH (n:Person) with distinct n.code as props return props ...

NotFoundException error for using Merge Nodes Apoc

Hi guys, I was trying to merge some node groups into one node based on their label. I looked at neo4j documentation (Merge Nodes - APOC Documentation) and tried to apply the query with my cases but it came up with this error. 1) This is the graph I ...

3X_d_7_d7e90449966a8302f54769eba2c13cfd2baa1a3f.png 3X_9_e_9e79ce3f8c6fab5c4703dad7c841d527ae529416.png
jin_what by Node Link
  • 1033 Views
  • 4 replies
  • 2 kudos

Wait for index population to complete?

Is there a way to wait for an index to be built after issuing a Create Index statement? I have a situation where I do the following: Load Meeting Nodes from a CSVCreate Index On Meeting_id fieldLoad MeetingParticipants Relationship from another CSV (...