jeroen / mongolite

Fast and Simple MongoDB Client for R
https://jeroen.github.io/mongolite/
284 stars 64 forks source link

mising arguments in mongo.Rd #254

Open ralmond opened 1 year ago

ralmond commented 1 year ago

The options argument to the $argument() function, although documented in the vignette, is missing from the reference page for mongo().

> args(mongo()$aggregate)
function (pipeline = "{}", options = "{\"allowDiskUse\":true}", 
    handler = NULL, pagesize = 1000, iterate = FALSE) 

Similarly, the filters argument is missing in the documentation for $update()

> args(mongo()$update)
function (query, update = "{\"$set\":{}}", filters = NULL, upsert = FALSE, 
    multiple = FALSE)