it seems that neo4j opens a transaction for simple match queries.
for example:
match (h:Event) return min(h.date_time),max(h.date_time)
is it possible to change it, so it will read from uncommitted data?
it seems that neo4j opens a transaction for simple match queries.
for example:
match (h:Event) return min(h.date_time),max(h.date_time)
is it possible to change it, so it will read from uncommitted data?
If you use the transactional Cypher HTTP endpoint, you can execute multiple Cypher statements (queries) within the same transaction, and subsequent statements can see the uncommitted data from previous statements.