We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Using association, I can request /book/2/chapters, which will give me chapters data of book 2(But no book data).
But is there any 'hack' by which I can get book data + chapters data from the same url? something like this?
{ "book": { ... all book 2 data ... , "chapters": { ... all book 2 chapters data .... } } }
If not, then is it possible to get a similar result with the use of middleware?
The text was updated successfully, but these errors were encountered:
You are better off using a hasMany relationship and asking for book 2 for example. An example can be found here: #235.
Sorry, something went wrong.
No branches or pull requests
Using association, I can request /book/2/chapters, which will give me chapters data of book 2(But no book data).
But is there any 'hack' by which I can get book data + chapters data from the same url? something like this?
If not, then is it possible to get a similar result with the use of middleware?
The text was updated successfully, but these errors were encountered: