I am using Spring data Neo4j project while my nodes contains relations properties using @RelatedTo , @RelatedToVia annotations, I don't want any of them to be fetched eagerly so these properties ain't marked with @Fetch annotations.
When node is fetched all his other relations are partly fetched ( each fetched related node only with id the rest of the properties are null) this happens in nested way also for the relations of the relations.
There is way to prevent this overhead? using include/exclude fields like in spring data mongo db?
Thanks