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
  • 857 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
  • 1120 Views
  • 1 replies
  • 1 kudos

Resolved! Building similarity graph for bipartite graph

Hi all, I was wondering if anyone has done a project that involve 2 independent pairs of nodes The plan is to use a similarity algo to find the jaccard.score between my POSITTIONS_1 nodes (1st day of data) and POSITIONS_2 nodes (2nd day of data) Both...

DMF194 by Node Clone
  • 1039 Views
  • 6 replies
  • 2 kudos

“apoc.cypher.runFile” something wrong?

I have a cypher script file “test.cypher”: CALL apoc.load.csv('rawCount.tsv', {header:true, sep:'\t'}) YIELD map, list CALL { WITH map, list MERGE (g:Gene{symbol: list[0]}) WITH * UNWIND keys(map)[1..] AS key W...

Resolved! Problem with installing 4.2 AMI Cluster on AWS

I have a problem with installing the 4.2.0 AMI on AWS. Everything looks fine but it seems that there is a problem with creating the WaitOnPasswordReset resource. When the timeout for this creation is reached the install is rolled back. But in the mea...

2X_b_b8da76c39a6bd2bec5f7844deb3fd7a9cf5ae8d1.png 2X_b_b126bd38c0d36de88355caa904bb275131b7e961.png 2X_7_7eac2226d0e31943b4ccf04ad81e21301e82f854.png 2X_b_bc64e33c4d47f2afe64b0235c4fc738f203d08c7.png

Traversing a graph in neo4j

Hey there, Hope this year be the best for all of you, While I was learning this online training course (Overview of Neo4j 4.x) I learned that there are 3 different types of traversing a graph (walk, trail and path) how to achieve this in cypher , apo...

Upload 2 MySQL databases into Neo4j using APOC

Hi, I want to upload 2 different MySQL databases into one neo4j db using APOC, how should I get started? Please keep in mind I do not want to use fabric to query across multiple neo4j instances, for purposes of visualizing the whole db for the projec...

Summary of Node and Relationship Properties

Had a requirement to summarizes unique properties and thought others might find these queries useful: MATCH (n) with DISTINCT labels(n) as nd,apoc.coll.sort(keys(n)) as props with nd,apoc.coll.dropDuplicateNeighbors(apoc.coll.sort(apoc.coll.flatten(...