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

Design tips when modelling for machine learning

Hello, What are good references for designing a graph and applying machine learning? I am looking for: Tips on when an entity should be a node vs property of a node to best facilitate ML?Walk-through of dataset to problem to DB design to ML Any point...

everyone's relationship with everyone

I am making a social network. Each user has a rating. I have a task to compare the ratings of each user with the rating of all users on the network. The rating is a vector of numbers (for example, an array (1,3,2,5,6)). Each user has such a vector of...

App initialization error in neo4j desktop

I installed neo4j desktop on my windows laptop. It works fine for a few days but the app does not launch after that. I tried reinstalling it a lot of times and the same thing happens - Works fine for a few days and then does not launch. I see this er...

Run for ever and no output from allshortestpath

Hello, I got the dataset from my boss but nodes don't have labels. I want to find all pairs shortest path. the dataset has about 10000 nodes. Please check my code is right? CALL gds.alpha.allShortestPaths.stream({ nodeProjection: '*', relationshi...

3X_4_5_4566395f3a32d09cf9c87862c3fdd0578a9bc395.png

Resolved! Neo4j v4.0.0 CALL db.schema() "ProcedureNotFound" Error

I just upgraded my Neo4j from 3.5 to v4.0. After running into no issues with the upgrade I started the server and went to the browser site to check out what's new with 4.0.0. Upon accessing the browser I did some queries and everything was working fi...

wdrosko by Node Link
  • 3619 Views
  • 5 replies
  • 2 kudos

Create edge

Hi All, I have 4 vertices surrounding a Customer, MemberVertice,AddressVertice,PhoneVertice and EmailVertice. I need help on how to create edges on this,,MemberVertice has a "has" relationship with all 3 vertices. All 4 vertices are having close to h...

Neo.ClientError.Transaction.TransactionTimedOut

Hi everyone, I'm new to neo4j, and I'm just exploring the technology and learn about how to use it. I'm following "Applied Graph Data Science for Web Applications" and I was exploring Yelp data set I came across an error Neo.ClientError.Transaction....

User defined procedure: returning text to user

I am writing a user-defined procedure, and I want to return "text" to the user so the user sees it in the browser after the procedure is completed. A CYPHER example would be: CREATE (n:PERSON {name: 'John Doe') RETURN toUpper("task complete") I unde...