Hi,
We installed neo4j bloom and when we launch it in browser, it stuck in loading status (blooming image keeps coming up ) and nothing else. Anyone had this issue before and solution for it?
Thanks,
We are storing timestamp at edge level and node level.
What are the best practices or recommendations to traverse through edges/nodes and display nodes in the same order by timestamp. Or display path of node order by timestamp in ascending order.
Tha...
getting error while trying to run below cyper script
neo4j> cypher-shell -file /var/lib/neo4j/import/testscript.cql;
Invalid input '-': expected (line 2, column 1 (offset: 7))
"-shell -file /var/lib/neo4j/import/testscript.cql;"
Where should we plac...
We have established time traversal path using below cypher which created edges between the nodes in database.
MERGE (elem:trip_1)-[r:HAS_STATE_OF]->(list:state)
WITH list ORDER BY list.statetime ASC
WITH COLLECT(list) AS lists
FOREACH (n IN RANGE(0, ...
In logistics domain, we have multiple "State" nodes hanging off of "Trip" node. There is 1:M relationship between Trip and State nodes. Currently there are around 1000 nodes hanging off of Trip node but we need to order those State nodes in an order...