Assuming that in blogs collection every document have authorId field with ObjectId value, following query from Queries README does not work because userId argument is a String and it is not converted to ObjectId.
store.query.expose('blogs', 'authoredBy', function (userId) {
return this.where('authorId').equals(userId);
});