Je code suivant (en Grails et interrogeables Plugin aka Compass):Comment puis-je accéder à la propriété de l'objet enfant dans le framework Compas Search?
class Topic {
String name;
static searchable = true;
}
class Question extends BaseEntity {
String question;
static searchable = true;
static hasMany = [
topics: Topic
]
}
Comment puis-je recherche Question avec id sujet précis?
Quelque chose comme Question.search ("topics # id: 12") ou Question.search ("topics.id:12") travail dosnt.