I have a problem with initial data import to use Spring Data in future. I use Neo4j (CSV) Batch Importer (https://github.com/jexp/batch-import). The main problem is in '__types__' index usage. It seems that Spring Data uses 'className' as a key for that index, but the field is called '__type__'. I tried to declare field __type__:string:__types__, but it creates field __type__ and index __types__ with the same key (__type__) as the field name. Is it possible to set 'className' as a key for the index or to change Spring Data behavior to use '__type__' as index key?
Thank you.