require 'neo4j/core/cypher_session/transactions' module Neo4j module Core class CypherSession module Transactions class HTTP < Base def commit end def delete end private # Because we're inheriting from the old Transaction class # but the new adaptors work much like the old sessions def adaptor @session end def connection adaptor.connection end end end end end end