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

AWS Neo4j Enterprise AMI

Hi, I want to launch neo4j enterprise v3.4 on ec2 . I have been trying to find an AWS neo4j enterprise AMI, but all i see is the option to set up and launch a causal cluster. (and not setup cloudformation) I have previously launched 3.3 enterprise us...

shweta by Node Link
  • 2772 Views
  • 11 replies
  • 1 kudos

How to backup a db running in kubernetes

Hello I've read the How to backup Neo4j Running in Kubernetes it seems that either the tool has change since the redaction of the article or that I'm not using the correct version of neo4j. I've deployed neo4j with helm3 in a k8s 1.17 cluster (hosted...

ticapix by Node Link
  • 2039 Views
  • 4 replies
  • 1 kudos

Calling apoc procedure from Golang driver

I want to call apoc procedure from the golang driver. I can fire basic cypher queries from driver but while call apoc procedure it throws syntax error. panic: An error occurred getting result of exec command: messages.FailureMessage{Metadata:map[stri...

Resolved! Need Help in Unwind Query

Hi, I need to know, how can get all the matching records and non matching record by passing query params from nodejs. i want result something like if file exists then [{ name: 'p1.pdf', exist: true }, { name: 'p2.pdf', exist: true }, { ...

Resolved! Problem with graph algorithms/jaccard similarity

Hi all, When calculating jaccard similarity using: RETURN algo.similarity.jaccard([1,2,3], [1,2,4,5]) AS similarity I received the following error: Neo.ClientError.Statement.SyntaxError Unknown function 'algo.similarity.jaccard' (line 1, column 8 (o...

elaine by Node
  • 3615 Views
  • 14 replies
  • 1 kudos

I'm not sure what this error means!

Kinda related to my last post, but when I try this call: MATCH (m:Drug {id: 'A'})-[:CONTAINS*2..2]-(neighbors) return neighbors.id, collect(r1.weight) as weight order by weight desc I get this error: Neo.ClientError.Statement.SyntaxError: Type mism...

Java 11 not recognized with Powershell tools

Hello everyone everyone. I am currently trying to run the Invoke-Neo4JAdmin tool to import 4 CSVs into a fresh Neo4J database. However, it chokes on the JAVA validation step (screen shot below). I am using a fresh installation of Neo4J Desktop 1.2...

2X_f_ff1828215c840dd21200c2a4d3cae94f9ea6d813.png 2X_3_30be5888de93a3d3e4d50876e1e71a6ff18d1923.png 2X_b_b2d0eaf02c29b1798e41a8ac93f98f8b7554b6ba.png

Want first occurrence of relationship

I have a data set where person name and place name is a node and they are connected with each other via datetime relationship when he was present there. I want to see the first occurrence of the nodes and relationship I am using distinct command but ...