I have a almost 5000 nodes of Recipes
and 5 nodes of Meal_Types
in neo4j database. Right now there is no relationship between them. I am running CQL below:
MATCH (n) RETURN n LIMIT 100000
This is running fine, but it is returning node related to Recipes
only. There may be something hidden, I mean there might be nodes related to Meal_Types
but as they are in same color it is very hard to differentiate them.
So is there a way to bring all nodes to dispaly with different colors respectively?