// Check - Feeds into the Healthcheck and checks whether we can connect to Neo and that the datastore isn't empty func (pcd CypherDriver) Check() error { return neoutils.Check(pcd.conn) }
// Check tests neo4j by running a simple cypher query func (s service) Check() error { return neoutils.Check(s.conn) }
func (cd service) Check() error { return neoutils.Check(cd.conn) }
func (s peopleNeoService) Check() error { return neoutils.Check(s.cr) }
// CheckConnectivity tests neo4j by running a simple cypher query func (pcw CypherDriver) CheckConnectivity() error { return neoutils.Check(pcw.conn) }