in common/src/main/java/com/youtrackdb/ldbc/common/queries/UpdateHandler.java [14:21]
public void executeOperation(TOperation operation, TinkerPopConnectionState state, ResultReporter resultReporter) throws DbException {
try {
state.executeInTx(g -> executeUpdate(operation, g));
resultReporter.report(0, LdbcNoResult.INSTANCE, operation);
} catch (Exception e) {
throw new DbException("Error executing update", e);
}
}