I have to find the results of top N items base on purchase orders for Orders of Northwind dataset.
I used the query:
MATCH (c:Customer)-[:PURCHASED]->(o:Order)-[:ORDERS]->(p:Product)
RETURN p.productID AS ProductID, p.productName AS ProductName, C...