Skip to content

Instantly share code, notes, and snippets.

@anidotnet
Created May 11, 2017 03:41
Show Gist options
  • Save anidotnet/516cd1d93c8087c9dac2edc38eaf78d5 to your computer and use it in GitHub Desktop.
Save anidotnet/516cd1d93c8087c9dac2edc38eaf78d5 to your computer and use it in GitHub Desktop.
Nitrite Introduction
// insert the document
collection.insert(doc);
// update the document
collection.update(eq("firstName", "John"), createDocument("lastName", "Wick"));
// remove the document
collection.remove(doc);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment