```db.ref('songs').count();``` will raise an exception if the 'songs' node has no children. data-reference.ts ```` count() { return this.reflect("info", { child_count: true }) .then(info => { return info.children.count; <<<-- HERE }) } ````
db.ref('songs').count();will raise an exception if the 'songs' node has no children.data-reference.ts