I am working on creating app like airbnb as test project, I am using two or may be more tables i.e: Listings, Reviews, Users and Categories
Now the issue i am facing on single listing detail page, where i need to display single list data of the post, and i need to fetch all the reviews which is related to that specific single list I am attaching my database tables screenshot below:
A) Your settings is fine. your issue maybe more how you link add the reviews to listing reviews field…
B) I suggest to change reviews to be linked to listing instead of listing having a list of review. In this case, you will do a search for (listing = current page listing or something like that). (Reasons: You probably don’t need to load the list of reviews when you show the list of listing. So this will reduce the data returned and be faster and cost less WU. Also, for a listing, you could reach limit allowed for a relationship field.)