in backend/src/services/cypherService.js [25:36]
async executeCypher(query) {
if (!query) {
throw new Error('Query not entered!');
} else {
try {
let resultSet = await this._graphRepository.execute(query);
return this.createResult(resultSet);
} catch (err) {
throw err;
}
}
}