private final PropertyConverter propertyConverter;
public GenericNodePropertyFieldAccessor(Neo4jPersistentProperty property,
Neo4jTemplate template) {
super(template, property);
GenericConversionService genericConversionService = new GenericConversionService();
genericConversionService.addConverter(new GenericObjectToObjectConverter());
this.propertyConverter = new PropertyConverter(genericConversionService,property);
}