Yes, findAll, findOne and the rest of the CRUD operations return an AJAX deferred.
But when they resolved on success, they are resolved with the model or model list.
So when you do:
- // Fetch playercan.when(MyApp.Models.Player.findOne({id: '8'})).done(function(player) {// player is a Player model});
Does this make sense?