I Needed to create a dashboard where I need to use 8 queries to filter out the data for different attributes. It's taking more than 5 seconds to load all the data. Is there a way so that I can decrease the query time?
I guess the problem is not with the query itself. I used the profile to see the query execution plan. I also created indices in the attributes for search performance. I needed to get 15 graphs using 15 different queries and if each query takes 200-30...
Thank you Clem for the response.
I have almost 10 queries like this. I don't have index on the properties but I have it on the node.
Match (c:CustomerName)-[:initiates_PO]->(n:SalesDoc)<-[:associated_to]-(p:Plant)
MATCH (h:DeliveryBlock)<-[:has_deliv...