Suppose I have a Firebase like this:

In a factory I create a model:
.factory ('$model', function ($firebase) {
var ref = new Firebase('https://xxxxx.firebaseio.com/admins/proefje');
var model = $firebase (ref); // this loads all the data!
model.loaded = false;
And in my controller I use the model:
.controller('DailyCtrl', function ($scope, $model) {
$scope.title = 'Daily';
$scope.data = $model.daily.data;
There are 2 problems:
when the controller is activated, data is still beeing loaded. I think I have to restructure the app a bit to solve this.
As parts of the data get quite large, I want to control how much data is loaded. I do not want to load all data at once. I tried the limit() function, but that seems not implemented in angularFire. Its not in the docs. I could try to load parts over the $child() function, but the I would still be loading an entire table.
Any thouhts on this?