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.

coman_gabriela9
Node
since ‎02-08-2019
‎06-01-2022

User Statistics

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

User Activity

Hi, I am new to Neo4j and Cypher and I am trying to create the behaviour of cube function (OLAP function) for Neo4j by using APOC library. More specifically, I am trying to have the same result I have using this query : MATCH(p:Product) RETURN p.reor...
I am stuck with trying to find a solution to my problem. Here's my code : MATCH(p:Product) WITH sum(p.unitsInStock) as SommeUnits, p.supplierID as Supplier, p.reorderLevel as ReordLevel MERGE(reord:Product {productName : "TotalReord", unitsInStock : ...