Imagine I have two models: dog, cat.
And the response of /api/dogs is
{
dogs: [
{
id: 1,
......
}
],
cats: [
{
id: 1,
......
}
]
}
Is it possible to push the cats data into client store for future use?