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

How to meassure index read / write trade off?

Hello Neo4j community, I am using the Neo4j reccomendations dataset to do some experiments on performance and I would like to meassure how the creation of an index affects the performance of queries and updates. Usually you find that using indexes is...

pska752 by Node Link
  • 291 Views
  • 0 replies
  • 0 kudos

Text similarity

Hi, i am a university student and i am doing my thesis on neo4j. The aim of the thesis is to find the similarity between various nodes. Nodes have 3 properties but I am only interested in one which is called "text" and is a very long string (a newspa...

Neo4j desktop java

I run Neo4j Desktop version 1.2.1 on windows 7 x64 I was wondering if it is possible to update the Azul Java that Neo4j uses? It is running an old version with security flaws. Best Kåre

kaare by Node
  • 707 Views
  • 2 replies
  • 0 kudos

Resolved! SSL handshake exception

Hello! I've been using Aura for a while now and it's been working great. I'm running one paid instance for production and a free instance for my staging environment. I'm currently using version 4.3.4 of neo4j-java-driver. Today however, I started ge...

Resolved! How can I get all paths to node?

Hello! There is a graph of the following form. Nodes: LessonSkill Relations: Lesson requires some skills: (:Lesson)-[:REQUIRES]->(:Skill) Lesson provide only one skill: (:Skill)-[:PROVIDED_BY]->(:Lesson) How can I get all longest paths (chains of le...

3X_4_4_44d3b244eac6ed7ceb137882583b9bce4909091c.png

How can I model this use case?

Hi, I am new to Neo4j and Cypher. I am Using Neo4j Desktop On Windows and try to improve efficiency our internal operations. The current relationship between the nodes is follows. (:Employee)-[:join]->(:Project) (:Project)-[:use]->(:Programming_Langu...

Resolved! Support of type Long in Cypher queries

Consulting the Neo4j cypher documentation and performing some tests show that it is only possible to use type Integer (and Float) for numbers in Cypher queries. There is no way to store a Long value as property. E.g. the query create (n:Person {id:'M...

Tunning a filtering relationships query

I'm using Neo4j 3.5 enterprise version, and I profiling the cypher below: MATCH (J:Host) WHERE J.Status = "running" AND not (J)-->(:Ipv4 {Ipv4: "xxx"}) AND (J)<--(:Cluster {Name: "yyy"}) return J The result of profiling looks like: It seems there ar...

3X_3_e_3e649fb4d270446caa53e9ab778bd4bc6afb90fe.jpeg

Resolved! Return top percentage of results

I've a graph of students and the various books that they've read. I want to find out the top 10% of students who've read the most books. How can I do that? I've tried the following cypher syntax: ''' MATCH (s:Student)-[:READ]->(b:Book) WITH s, COUNT(...