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

Resolved! Count distinct value for a relationship property

Hi all, why these two Cypher statements returns different results? MATCH ()-[r:REL]->() RETURN r.property, count(*) MATCH ()-[r:REL]-() RETURN r.property, count(*) The first cypher statement use a directed relationship, this is the only difference. n...

Andrea by Node
  • 1224 Views
  • 2 replies
  • 0 kudos

Neo4j Unwind query response very slow

Hello every one I am using neo4j 4.1.3 (Community) version I have a graph that contains only 600 nodes and I am executing an unwind query but it is responding very slow can someone help me out OPTIONAL MATCH(u1:User {status : '1'})-[x:POSTS]->(p:Post...

Neo4j-admin import CSV timestamp datatype

I want to use neo4j-admin to import a larger quantity of CSV based data. In which way do I need to structure the header files to support the type timestamp in one of the files which are created? My timestamp column looks like this: 2021-02-01 00:00:0...

Cannot update the database

Hello Everyone, it has now become the norm on my system that the database is unable to update. It is a hit or miss at times. Here is the message: Failed to upgrade database. Please check log files, make adjustments and try again. Just upgraded to the...

tideon by Graph Buddy
  • 1758 Views
  • 9 replies
  • 0 kudos

Neo4j base recommendation systems

Dear friends, I'm trying to create a real-time recommendation system using the Neo4j graph database. And I want to write a paper base on that. I'm using different CQL to find the best matches to suggest as recommendations to users. There is a problem...

Starting with cypher

Hi Everyone, I'm new user and i need help with this question: I need to get the name of the location from where the maximum number of replies were written. Showing the name and the number of replies.. How would the query with cypher be? Thanks.

Constraint on number/type of relations per node

I have two types of nodes: :Person and :Event. Between these nodes there can be several different relations: :DECEDENT, :SPOUSE, :CHILD, :PARENT, etc. Q1: Is it possible to set constraint on allowed relation types for specific :Event type? Example: F...