Given the following query string: /artists?prefetch~json={"cds":"tracks"} I would expect a response similar to this:
{
"linked": {
"cds": [...],
"tracks": [...],
},
"links": {
"cds": {...},
"tracks": {...}
},
"artists": [...]
}
But I am instead getting this, without tracks in the results:
{
"linked": {
"cds": [...],
},
"links": {
"cds": {...},
},
"artists": [...]
}