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! Neo.ClientError.Statement.SyntaxError

// Find maximum diameter of network // maximum shortest path between two nodes MATCH (a:Character), (b:Character) WHERE id(a) > id(b) MATCH p=shortestPath((a)-[:INTERACTS*]-(b)) RETURN length(p) AS Length, extract(x IN nodes(p) | x.name) AS Path ORDE...

Resolved! Importing ncithesaurus ontology into neo4j

Hi Neo4j community, Looking for some general advice on the most efficient way of converting/importing an ontology file (Thesaurus_22.06d.OWL (https://evs.nci.nih.gov/ftp1/NCI_Thesaurus/Thesaurus_22.06d.OWL.zip)) into a neo4j knowledge graph.  Have ex...

ceiag by Node
  • 701 Views
  • 2 replies
  • 0 kudos

Resolved! fail to project graph with cypher

Hi, I am a beginner and I am trying to use GDS to project my graph. I try to build a query like the tutorial  https://neo4j.com/docs/graph-data-science/current/graph-project-cypher/#_multi_graph shows but failed. May I know why my code did not work? ...

Simple Recommendation

Hey Community, i'm new to Neo4J. How can i reason/interference with Neo4j? Data: user1-[hasItem]->Item1 user1-[hasItem]->Item2 user2-[hasItem]->Item1 user2-[hasItem]->Item2 user2-[hasItem]->Item3 user3-[hasItem]->Item1 user3-[hasItem]->Item2 user3-[h...

GDS upgrade fails

Hello,  I am a neo4j newbie.  I am trying to upgrade my Neo4j desktop GDS library so that I can use the knn filtered algorithms. I am running Neo4j desktop version 1.4.15 (database version 4.4.5) which installs GDS version 2.0.3 by default.  I need t...

rc by Node Clone
  • 888 Views
  • 4 replies
  • 1 kudos

Cannot create WGS84 point with invalid coordinate

I have used spatial functions successfully in earlier versions of neo4j but now gives error when I run on 4.0 match (g1:gps), (g2:gps) return distance(point({latitude:g1.latitude,longitude:g1.longitude}),point({latitude:g2.latitude,longitude:g2.longi...

Resolved! Limiting recursion by a condition

Hi, I have an organisation chart modelled as a hierarchy in Neo, and I'm trying to find an efficient way of answering, "who reports to a given individual?" Here are the rules: All Departments apart from the root are PART_OF exactly one parent Departm...

Screenshot from 2022-07-27 21-23-26.png
mos20 by Node
  • 574 Views
  • 3 replies
  • 0 kudos

Resolved! Cannot use GDS library

Hi, I am using Neo4j desktop (Version 1.4.12, Neo4j 4.4.3, ) and have installed GDS library plugin. I have followed the instructions from Neo4j Desktop - Neo4j Graph Data Science   and copied the two lines into the setting of my database. But when I ...