var oldMatches = Meteor.users.find(userId, {
fields: {
_id: false,
matches: true
}
}).fetch()
This returns an object with an empty matches
array, as it should. How would I access this array to find the length of it?
Thanks.