[Ember data] Is it possible to load multiple irrelevant model data in one request

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?