-
Notifications
You must be signed in to change notification settings - Fork 9
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add multi level relations loading support #52
Comments
Thank you for your quick response. Its a great library, and this would make it even better. |
Hello @sverin I've published a release candidate version 3.4.0-RC1 to address the multi level loading feature. |
I have tried it today and it works perfectly. It all works as I expected now. I will try it out some more until friday and if I have some issues I'll let you know. Thanks for your quick response. This framework just become even better. |
I have tried it now for a couple of days and it works fine. If you feel comfortable with the code you can close the issue and make a final release. |
Thank you @sverin I will release the version then. |
@sverin When you wrote:
Did you refer to the same setup as you posted initially or did you change some details afterward in your running solution? |
I having an issue when I fetching objects that have relationship in more than one level. I have 3 different classes that reference to each other by a one-to-one relationship, as shown below.
Through a spring-controller and spring repository I can add some data to MongoDB database. But then my issue starts. As you can see in the repsonse below the option does not have any text value when I use a
ProductRepository
to fetch the data. I have checked the MongoDB database and the data has been saved correctly.However, if I use a
ProductVariationRepository
and do the fetch one level down, it works perfectly.Is this a bug? Can't you have multi level relationship? Or have I missed something in my configuration ?
The text was updated successfully, but these errors were encountered: