in common/src/main/java/com/youtrackdb/ldbc/common/queries/ComplexReadQuery12.java [59:73]
protected LdbcQuery12Result toResult(Map<String, Object> record) {
long personId = getLong(record, "personId");
String personFirstName = getString(record, FIRST_NAME);
String personLastName = getString(record, LAST_NAME);
List<String> tagNames = (List<String>) record.getOrDefault("tagNames", new ArrayList<>());
int replyCount = getInt(record, "replyCount");
return new LdbcQuery12Result(
personId,
personFirstName,
personLastName,
tagNames,
replyCount
);
}