Module: Neo4j::Driver::Summary::QueryType

Defined in:
lib/neo4j/driver/summary/query_type.rb

Overview

Mirrors org.neo4j.driver.summary.QueryType — coarse classification of what a query did (read, write, both, or schema mutation).

Constant Summary collapse

READ_ONLY =
'r'
WRITE_ONLY =
'w'
READ_WRITE =
'rw'
SCHEMA_WRITE =
's'