protected LdbcQuery3Result toResult()

in common/src/main/java/com/youtrackdb/ldbc/common/queries/ComplexReadQuery3.java [73:89]


    protected LdbcQuery3Result toResult(Map<String, Object> record) {
        long personId = getLong(record, "personId");
        String personFirstName = getString(record, FIRST_NAME);
        String personLastName = getString(record, LAST_NAME);
        int xCount = getInt(record, "xCount");
        int yCount = getInt(record, "yCount");
        int count = getInt(record, "count");

        return new LdbcQuery3Result(
                personId,
                personFirstName,
                personLastName,
                xCount,
                yCount,
                count
        );
    }