Вот ваш код с пояснениями. Помогает ли это?
// publish the result of this function to the client under the name 'lists.public'
Meteor.publish('lists.public', function() {
// Find in the Lists collection..
return Lists.find({
// ..all documents there the field userId does *not* exist.
userId: {$exists: false}
}, {
// From the found records, only return the fields listed in Lists.publicFields.
fields: Lists.publicFields
});
});
Вы также можете захотеть console.log(Lists.publicFields)
где-нибудь, если вы не уверены, что там. Это не указание метеора c, и я не могу сказать, что там установлено. Может быть сделано с помощью пакета, который вы используете.