0

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?

Lior Goldemberg
  • 866
  • 13
  • 26

1 Answers1

0

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.

cybersam
  • 63,203
  • 6
  • 53
  • 76