My Cypher query is performing really slow even with very less volume (hundreds of records)..
start n=node(*),n1=node:node_auto_index(customerId = '23') MATCH (n)-->(movie) where movie.Language = 'English' and movie.MOVIE_STATUS='A' with distinct(movie) as mov,n1 where not(n1-->mov) with distinct(mov) as movDet, count(mov) as movCt return movCt,movDet.Movie,movDet.Language order by movCt desc All I am trying to do is to find out the most liked movies which the customer hasn't visited previously (in the same language).. Any suggestion would be of great help.. Thanks, Arun. -- You received this message because you are subscribed to the Google Groups "Neo4j" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. For more options, visit https://groups.google.com/d/optout.
