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
  • 997 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

Load Json on the fly

I'm trying to load JSON files with NiFi. With apoc.load.json this works fine. But it would be interesting to load json on the fly without the need to save it first. Use Case: I read the data from a relational database, convert it into Json and import...

2X_e_ed0351fdd5f3759d98bdffd03d1b283ebdacb393.png

Neo4j parser : for vis.js representation

Good day, I am aware of Neovis but this tool is too limited on the visualization front, I want to know if a parser exists of some kind that can output neo4j data in way that is can be converted to vis.js json format (I have coded this part already) J...

werner by Node Clone
  • 1585 Views
  • 3 replies
  • 0 kudos

Causal cluster - Neo4j not running but it is?

Hi Everyone! I'm having this little issue with a cluster I'm trying to create with 3 instances. The cluster seems to be created correctly in the logs, the neo4j processes are running but none of the members accept http or bolt connections. This is th...

cesar by Node Link
  • 3180 Views
  • 7 replies
  • 0 kudos

How to make multi level path traversal faster

I want to find all the paths from the leaf node(E) to the root node(A). Not for any specific node so no id or filed filter here. The data model is as shown in the screenshot. I used a basic Cypher query to find the paths: MATCH path=(:A)-[:USE*]->(:E...

2X_6_61271cda1298faec00a07dd55ee0b18ddf06dc45.jpeg
Raj725 by Node Clone
  • 5914 Views
  • 8 replies
  • 2 kudos

Resolved! High CPU usage, AWS AMI Causal Cluster

I have been using the AWS community neo4j AMI for a while now and we just finally decided it was time to move across to running with a proper cluster, we applied for the startup program and got accepted. I proceeded to launch the causal cluster AMI o...

2X_4_40228a304f9ca1b17a9f7b0a68614ac6dee58ce2.png 2X_7_7cba59cecc9977d28411a00a0b512c44749a3444.png
darryn by Node Clone
  • 2396 Views
  • 8 replies
  • 3 kudos

Resolved! Memory Requirement?

Hi, May I know the RAM requirement for processing most of the traversal queries and run graph algorithms for 5 million nodes (9 labels) with 14million relationships (14 types), I have loaded the data from elastic, and data keep coming in like 10k per...

2X_b_ba8704e180c67f0cc23c5efea40418d0953cfcd6.png

Resolved! Load CSV with empty cells

Hello everyone, I am trying to load simple data from CSV to Noe4j, but it keeps giving me this error "Neo.ClientError.Statement.SemanticError: Cannot merge node using null property value for Name" I don't have null values in my file !!. Even if I wil...

2X_a_aded3c61cc2e0432afdc842ba75c2f8ecf0ff771.png

Resolved! LOAD CSV & Google Sheets

I came across this article by @rvanbruggen about using LOAD CSV. As stated in the blog, it in order for this to work, the spreadsheet needs to be accessible by anyone on the internet because Neo4j doesn't know how to handle the authentication. My que...

Setup custom style

As I have read here there was an option to configure your own style: I can still take a look at my style but I cannot define it at the beginning. Is it even possible to specify that e.g. all company nodes are red, all employee nodes with a certain p...

2X_8_8be062b62f34b34c2a2bb8e1a721fc5b2f2a2238.png 2X_b_b21ab734d6cdf1cff1c9c48e9665ab79829e54a4.png 2X_a_a8d9ab9c601c6e7e95620a1f10a9ba99cc811ad5.png

Neo4J presigned urls IAM role for access on EC2

Hi there I have Neo4J running on an EC2 instance and this was launched from an AWS marketplace image. I have set up a AWS batch job that accesses some data and then ideally I want to upload the csv the batch writes to an S3 and then neo4j. I create a...

Relationship one to many

Hello I am having the following Table Name Role Project name1 Owner Project1 name1 Owner Project2 name1 Owner Project3 I currently have the query: MATCH (p:Person {name: "name1"})-->(n:Project) MERGE(p)-[:HAS_ROLE]->(n) RETURN p,n This leads to a out...