Hi,
exists a function which takes a monger function and returns the created Mongo call insteat of the result?
For example like this:
=> (getCall (mc/insert "documents" {:first_name "John" :last_name "Lennon"})
"db.documents.find {first_name : "John", last_name "Lennon" }"
I testing some monger function and verify the result of the monger function on an other shell. (In my case I use the Robomongo shell or the Mongo Shell)
Such a function would make the testing easier, because I only need to copy and paste the returned String.