When exporting a model to Neo4J the NeoCoreBuilder does not flatten the model (and its referenced models).
This leads to a NPE when collectReferencedModels tries to find targeted Models.
After changing the semantics of targets/proxyTargets the targets of the references within the models (e.g. GabisQuiltographyPages) are no longer resolved automatically. Instead the model must be flattened.
This could be done in the NeoCoreBuilder before calling collectReferencedModels(m) inside exportModelToNeo4j(Model m) (line 214)
When exporting a model to Neo4J the NeoCoreBuilder does not flatten the model (and its referenced models). This leads to a NPE when
collectReferencedModels
tries to find targeted Models. After changing the semantics of targets/proxyTargets the targets of the references within the models (e.g.GabisQuiltographyPages
) are no longer resolved automatically. Instead the model must be flattened.This could be done in the
NeoCoreBuilder
before callingcollectReferencedModels(m)
insideexportModelToNeo4j(Model m)
(line 214)