私はドメインを持っています:
class Listing {
String name
Address address
static searchable = {
address component: true
only: ['name']
}
static constraints = {
address nullable: true
}
}
アドレスが !=null のオブジェクトのみを検索インデックスに入れたい。構成によって達成可能ですか?