Skip to content

Instantly share code, notes, and snippets.

@rcy
Created September 4, 2013 07:44
Show Gist options
  • Save rcy/6433869 to your computer and use it in GitHub Desktop.
Save rcy/6433869 to your computer and use it in GitHub Desktop.
simple minimongo query
function miniQuery(doc, query) {
var collection = new Meteor.Collection(null);
collection.insert(doc);
return !! collection.findOne(query);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment