Table of Contents

Interface ICounters

Namespace
Neo4j.Driver
Assembly
Neo4j.Driver.dll

Represents the changes to the database made as a result of a query being run.

public interface ICounters
Extension Methods

Properties

ConstraintsAdded

Gets the number of constraints added to the schema.

ConstraintsRemoved

Gets the number of constraints removed from the schema.

ContainsSystemUpdates

If the query updated the system graph in any way, this method will return true.

ContainsUpdates

Gets whether there were any updates at all, eg. any of the counters are greater than 0.

IndexesAdded

Gets the number of indexes added to the schema.

IndexesRemoved

Gets the number of indexes removed from the schema.

LabelsAdded

Gets the number of labels added to nodes.

LabelsRemoved

Gets the number of labels removed from nodes.

NodesCreated

Gets the number of nodes created.

NodesDeleted

Gets the number of nodes deleted.

PropertiesSet

Gets the number of properties (on both nodes and relationships) set.

RelationshipsCreated

Gets the number of relationships created.

RelationshipsDeleted

Gets the number of relationships deleted.

SystemUpdates

Gets the number of system updates performed by this query.