Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have domain class User which has many-to-many relationship to domain class LibraryElement. I am trying to filter all the library elements, with certain text in it, that belong to User. This is how the searchable properties and relationship is defined:

User side:

static searchable = {
    id name: 'userId'
    libraryElements component: true
}

static hasMany = [libraryElements: LibraryElement]

LibraryElement side:

static searchable = {
    users component: true
}

static belongsTo = User
static hasMany = [users: User]

I am trying to execute search like this:

LibraryElement.search("userId:" + userId + " libraryElementName:" + searchWord + "*")

I am getting 0 results even though in database there is a data that should be hit by this search.

share|improve this question
What is libraryElementName, i didnt see it in LibraryElement, can please elaborate. – Umair Saleem Mar 18 at 6:52
It is a string field inside LibraryElement domain. – rastko Mar 20 at 20:08

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.