@@ -27,7 +27,7 @@ class HydraNormalizer {
return UrlUtils.makeIRI(targetEntity, id)
})
} else {
- entity[field] = UrlUtils.makeIRI(targetEntity, value)
+ entity[field] = value !== null ? UrlUtils.makeIRI(targetEntity, value) : null
}