Description Usage Arguments See Also Examples
Send a json query to mongodb.
| 1 |   dbRemoveQuery(rmongo.object, collection, query)
 | 
| rmongo.object | The RMongo object. | 
| collection | The name of the collection the query is being performed upon. | 
| query | A JSON string query. See http://www.mongodb.org/display/DOCS/Advanced+Queries for more information on the MongoDB query language. | 
| 1 2 3 4 |   mongo <- mongoDbConnect("test")
  output <- dbInsertDocument(mongo, "test_data", '{"foo": "bar"}')  
  output <- dbRemoveQuery(mongo, 'test_data', '{"foo": "bar"}')
  print(output)
 | 
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.