clear method
Clear the graph. This removes all nodes and relations from the graph.
Implementation
@override
void clear() {
_db.execute('DELETE FROM node_properties');
_db.execute('DELETE FROM relation_properties');
_db.execute('DELETE FROM nodes');
_db.execute('DELETE FROM relations');
}