in common/src/main/java/com/youtrackdb/ldbc/common/queries/ShortReadQuery7.java [57:75]
protected LdbcShortQuery7MessageRepliesResult toResult(Map<String, Object> record) {
long commentId = getLong(record, "commentId");
String commentContent = getString(record, "commentContent");
long commentCreationDate = getDateAsMillis(record, "commentCreationDate");
long replyAuthorId = getLong(record, "replyAuthorId");
String replyAuthorFirstName = getString(record, "replyAuthorFirstName");
String replyAuthorLastName = getString(record, "replyAuthorLastName");
boolean replyAuthorKnows = getBoolean(record, "replyAuthorKnows");
return new LdbcShortQuery7MessageRepliesResult(
commentId,
commentContent,
commentCreationDate,
replyAuthorId,
replyAuthorFirstName,
replyAuthorLastName,
replyAuthorKnows
);
}