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

Running query in JAVA

Hi, What am I missing in the JAVA api (spring)? where can I run a query? I don't see any method for that... see image bellow. compile 'org.springframework.data:spring-data-neo4j:5.1.9.RELEASE' compile("org.springframework.boot:spring-boot-starter-dat...

2X_7_7e77b90c9d19bc7c3e6b707f332d95049350a7be.png

APOC s3 url isnt working for me

I'm trying to use APOC to load a CSV load from S3. I cannot make this happen. My setup: neo 3.6.3 (docker) - tried both enterprise and community apoc 3.5.0.4 The plugins directory (per the documentation) contains: apoc-3.5.0.4-all.jar aws-java-sdk-c...

dbeaumon by Node Link
  • 1124 Views
  • 2 replies
  • 0 kudos

Zero path length

Dear Community, I have the following Cypher query, where I utilize apoc.dijkstra (However it is the case for other path finding algorithms): CALL apoc.load.json("file:///D:/...../input.json") YIELD value UNWIND value.origin AS orig MATCH(origin:conc...

Create relationship from a relationship CSV

Hi, I am new to Neo4j and I couldn't find the answer directly by looking for it in this forum. I want to create relationships from a csv on already existing nodes. These are the CSV's I have with the following data: object.csv unid,name object-link.c...

Using auto scaling groups to manage ec2 instances

We are in the middle of converting a single enterprise database into a 3 node casual cluster and the current thought is to use an auto scaling group to manage the ec2 instances. After looking around I haven't seen this mentioned before and wondering ...

jbedell by Node
  • 1310 Views
  • 1 replies
  • 0 kudos

Where statement not workign with UNWIND

I've got a rather long cypher query, MATCH (l:Lease {id: $leaseID}) MATCH (o:Operator {id: $operatorID}) WITH l as lease, o as operator, $LeaseLandInfo as interest MERGE (lease)-[r:ASSIGNEE {id: randomUUID(), acres: interest.amount, volPage: interes...