[hibernate-dev] Shaping the requirements for the new DocumentBuilder to come in Hibernate Search 6

2016-11-17 Thread Sanne Grinovero
Hi all, among the various plans for Hibernate Search 6, one of the reasons we had to do the Elasticsearch integration sooner as experimental was to get ourselves a clearer picture of what's going to be needed in terms of internal cleanup. Our DocumentBuilder is ancient, and several new features ha

Re: [hibernate-dev] [OGM] Inheritance mapping in Neo4j

2016-11-17 Thread Sanne Grinovero
Hi, it makes sense but I don't think we can change the mapping now. Could you do it as a new option? Would you be able to adjust the queries as needed? If you can make it a configuration property, default to the old style mapping, and log a warning of using a deprecated mapping when the old one i

Re: [hibernate-dev] [OGM] Inheritance mapping in Neo4j

2016-11-17 Thread Guillaume Smet
Hi, As I understand it, having 2 labels means that you could search either with n:Person or n:Player? Thus if we keep the DTYPE: Player in place in addition to both labels, we won't break anything, will we? -- Guillaume On Thu, Nov 17, 2016 at 2:30 PM, Sanne Grinovero wrote: > Hi, it makes s

Re: [hibernate-dev] [OGM] Inheritance mapping in Neo4j

2016-11-17 Thread Davide D'Alto
Yes, I think that if we keep the property and only add the label we won't break anything in the mapping. On Thu, Nov 17, 2016 at 2:15 PM, Guillaume Smet wrote: > Hi, > > As I understand it, having 2 labels means that you could search either with > n:Person or n:Player? > > Thus if we keep the DT