I'm trying to use find to return explicit fields, and the _id field gets returned everytime regardless. Possible to not return the _id or somehow make sure it is always returned as a string without having to traverse every doc looking for _ids?
result (with-collection db "test"
(find {:foo "bar"})
(fields [:foo])
)]
Always returns foo and the _id
Thanks,