If you want to load them in parallel you can use $.when:
- $.when(Todo.findAll({}), User.findOne({id : 5}).then(function(todos, user){
- ...do stuff
- })