public void parseLinked(final ODocument iRootRecord, final OIdentifiable iLinked, final Object iUserObject,
final String iFieldName, final OFetchContext iContext) throws OFetchException {
try {
((OJSONFetchContext) iContext).writeLinkedAttribute(iLinked, iFieldName);
} catch (IOException e) {
throw new OFetchException("Error writing linked field " + iFieldName + " (record:" + iLinked.getIdentity() + ") of record "
+ iRootRecord.getIdentity(), e);
}
}