protected LdbcQuery11Result toResult()

in common/src/main/java/com/youtrackdb/ldbc/common/queries/ComplexReadQuery11.java [51:65]


    protected LdbcQuery11Result toResult(Map<String, Object> record) {
        long personId = getLong(record, "personId");
        String personFirstName = getString(record, FIRST_NAME);
        String personLastName = getString(record, LAST_NAME);
        String organizationName = getString(record, "organizationName");
        int organizationWorkFromYear = getInt(record, "organizationWorkFromYear");

        return new LdbcQuery11Result(
                personId,
                personFirstName,
                personLastName,
                organizationName,
                organizationWorkFromYear
        );
    }