in common/src/main/java/com/youtrackdb/ldbc/common/queries/ComplexReadQuery8.java [48:64]
protected LdbcQuery8Result toResult(Map<String, Object> record) {
long personId = getLong(record, "personId");
String personFirstName = getString(record, FIRST_NAME);
String personLastName = getString(record, LAST_NAME);
long commentCreationDate = getDateAsMillis(record, "commentCreationDate");
long commentId = getLong(record, "commentId");
String commentContent = getString(record, "commentContent");
return new LdbcQuery8Result(
personId,
personFirstName,
personLastName,
commentCreationDate,
commentId,
commentContent
);
}