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.

rajat12a
Node
since ‎09-25-2019
‎06-01-2022

User Statistics

  • 11 Posts
  • 0 Solutions
  • 0 Kudos given
  • 0 Kudos received

User Activity

Hi, Myself Rajat, Software Engineer in a Startup from India. Using Neo4j for our recommendation system, recently started working on it. Still learning the cypher ways. Looking for all the help I can get. Cheers
Neo4j Version: 3.5.0 Trying to get sum on a node property MATCH (a:Author)-[p:Published]->(b:Book) WITH a.author_id AS author_id, SUM(b.read_count) AS total_read_count WHERE total_read_count < 500 RETURN author_id, total_read_count have indexes o...
The counts are shown different by a good margin at a particular time How is that possible? The label count() shows less number compared to exists count() neo4j> MATCH (n:User) where exists(n.user_id) RETURN count(*); +----------+ | count(*) | +------...