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
I have texted you in Discord, you said to ask you here.
I can't figure out how to filter by Map. Using your mongo-example project as an example
There is an entity company, which has a field Map<String, String> websites. Let's say there is an object in mongo
{ name : "Apple"
websites : {
"someSiteDefaultName" : "someUrl.com"
}
}
And I want to compose a query like this websites.someSiteDefaultName : "someUrl.com" . How do I do that? At the moment I get an error that there is no someSiteDefaultName field in the Map class.
You said maps are currently supported only in the JPA module, so please make support for it.
The text was updated successfully, but these errors were encountered:
Not sure how we can handle maps other than Map<String, String>, your PR only handles this case unfortunately.
Feel free to share more generic solutions.
I have texted you in Discord, you said to ask you here.
I can't figure out how to filter by Map. Using your mongo-example project as an example
There is an entity company, which has a field Map<String, String> websites. Let's say there is an object in mongo
{ name : "Apple"
websites : {
"someSiteDefaultName" : "someUrl.com"
}
}
And I want to compose a query like this websites.someSiteDefaultName : "someUrl.com" . How do I do that? At the moment I get an error that there is no someSiteDefaultName field in the Map class.
You said maps are currently supported only in the JPA module, so please make support for it.
The text was updated successfully, but these errors were encountered: