You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
//give me instances of TestMapJson, which have at least one child with the age of 8def result =TestMapJson.withCriteria {
pgJsonHasFieldValue 'data', 'childs.age', '8'
}
//i would expect instance1 and instance2 to be returned
//give me instances of TestMapJson, which have at least one child with the age of 8 which is named Peterdef result =TestMapJson.withCriteria {
pgJsonHasFieldValue 'data', 'childs.age', '8'
pgJsonHasFieldValue 'data', 'childs.name', 'Peter'
}
//i would expect instance1 to be returned
Is there a use case for this or am I trying to do stuff that is not implemented?
The text was updated successfully, but these errors were encountered:
I may be to stupid to read between the lines in the docs, but i cant get the following to work:
Is there a use case for this or am I trying to do stuff that is not implemented?
The text was updated successfully, but these errors were encountered: