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

Auto Detect Nodes & Relationships from JSON

Hi all, Is there a way of Neo4J automatically detecting the nodes and relationships directly from a JSON file and building a graph directly from them? I've tried using CALL apoc.load.json but this just loads the data into a table, and doesn't find th...

neil by Node Link
  • 549 Views
  • 0 replies
  • 0 kudos

Errors when importing local database to Aura

When I want to import the local database in the neo4j desktop, I follow the steps on your website. Open commanding line, input "neo4j-admin help push-to-cloud". It says Unknown subcommand push-to-cloud. So I follow the step and download the 'push-t...

2X_4_41ad7b2a6354c1ef6ce9fbad4f9561621123c5b2.png 2X_8_8e1098591d460b6040d71e8961d80926fa0502d6.png
sof10 by Node Link
  • 1299 Views
  • 9 replies
  • 0 kudos

Resolved! How to find the closest common parent?

Hello, I assume my problem is not a new one, but I can't find an elegant solution. merge (A:LEU {LEID: "A"}) merge (B:LEU {LEID: "B"}) merge (c:LEU {LEID: "C"}) merge (aa:LEU {LEID: "AA"}) merge (a)-[:CONTROLS {share:toFloat(100.0)}]->(b) merge (a)-[...

depire by Node Clone
  • 1089 Views
  • 5 replies
  • 0 kudos

Unable to connect to bolt on linux server from desktop

I installed Neo4j community edition on Linux Server and when I try to connect from browser on my Mac, I was able to launch the browser at :7474 successfully but :server connect to bolt server seems to take forever to connect. Once I connect when I do...

skmami by Node Clone
  • 742 Views
  • 1 replies
  • 1 kudos

Resolved! SyntaxError at the p of Replace

Hello, I am getting a really strange error and cant find a solution for it. Neo.ClientError.Statement.SyntaxError Invalid input 'P': expected 'm/M' or 't/T' (line 2, column 3 (offset: 2)) "REPLACE(ProductLocation._productionTypeId, 'CS-'','')" My Cod...

START WITH performance?

I am designing the graph model at the moment. I was wondering what is the performance expected for a START WITH query on a indexed String field when there will be a lot of nodes to look in? Will it be fast enough and use a tree to find the find node ...

Using parameters in calling properties

Hello everyone, I have the following data. merge (a:LEU {LEID: "A"}) merge (b:LEU {LEID: "B"}) merge (c:LEU {LEID: "C"}) merge (a)-[:CONTROLS {date:date('2010-01-01')}]->(b) merge (a)-[:CONTROLS {date:date('2011-01-01')}]->(c) I create the property "...

depire by Node Clone
  • 370 Views
  • 1 replies
  • 0 kudos

Data structure for a D3 tree

Hi Everyone New to the world of Neo4j and am looking for some help getting my head round a cypher query. I may have potentially have even set up the graph structure wrong in the first place, so any advice is helpful! The end result I'm trying to end ...