-
Notifications
You must be signed in to change notification settings - Fork 2
Closed
Description
I don't like (performance reasons) that in the current implementation we are wrapping everywhere the Neo4j Nodes into classes. In the end, these classes are not actually needed because
- for import, we can just create the raw data and access the required node label etc through an interface instead (static final var)
- actually getting data is always done through the database, be it either indexes or the result of methods that can be implemented using the Neo4j
Nodemethods
@bio4j/coders what do you think?