How can I include multiple child relationships using ?include=
?
Example:
/store/1?include=books.author:downloads
The result would produce:
[
id: 1,
name: 'Book Name',
author: {
data: {
id: 1,
name: 'Author name'
}
},
downloads: {
data: {
weekly: 100,
monthly: 1000
}
}
]
I left out most of the object, just the core of what I'm requesting.