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
  • 922 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
  • 1164 Views
  • 1 replies
  • 1 kudos

Resolved! java.lang.IllegalArgumentException error

I am trying to run the following code. CALL gds.graph.create.cypher( 'my-cypher-graph', 'MATCH (n:Person) RETURN id(n) AS id', 'MATCH (a:Person)-[:LIKES]->(b:Person) RETURN id(a) AS source, id(b) AS target' ) YIELD graphName, nodeCount, r...

kanranmm by Node Link
  • 1445 Views
  • 2 replies
  • 1 kudos

Resolved! Problems running seedDb

I have installed Neo4J on docker, I am able to log in to the web interface and run basic commands. I am new to Neo4J so I am following the tutorial here https://www.youtube.com/watch?time_continue=4&v=1JLs166lPcA&feature=emb_logo When I run seedDb as...

Resolved! Neosemantics plugin is not detected

I'm running Neo4j Server version: 4.0.2 (community). I followed the directions on the neosemantics plugin installation. I have ls $NEO_HOME\plugins apoc-4.0.0.11-all.jar neo4j-graph-data-science-1.2.1-standalone.jar README.txt apoc-nlp...

Improve results of Label Propagation Algorithm

I applied Label Propagation on my data. My goal is to make an article recommendation engine with the LPA. I have the following results : I have 1670 articles and I would like to have less clusters. What can I do to improve the results, is it possib...

2X_2_264fa1541e241c79881cd412ec00c59a0b4fb2d7.jpeg
LJRB by Graph Buddy
  • 739 Views
  • 2 replies
  • 0 kudos

Combining Queries and combination permutations

Newbie here, Have two queries and they each work independently and I would like to combine them to feed the results of the first into the second. The first generates two sets patents based on companies and some additional conditions. MATCH (a1:compan...

Resolved! Not Displaying the count on the output

Sorry for this basic questions, it there a way just to show popular name and not the count once the code has been executed? example <RETURN pop.Name, count(pop.Name) as frequency ORDER BY frequency DESC LIMIT 2> Thank you