lykmapipo / mongoose-gridfs

mongoose gridfs on top of new gridfs api
MIT License
91 stars 39 forks source link

readById metadata content-type #4

Closed ivanhuay closed 7 years ago

ivanhuay commented 7 years ago

I am trying to do a search and return in addition to the image the metadata as the content-type but I do not find this functionality.

lykmapipo commented 7 years ago

@ivanhuay The model you obtain from mongoose-gridfs is actual mongoose model. Any mongoose query operations applies to it.

The special part is when you want to stream content from mongodb. This is when you have to use exposed mongoose-gridfs methods.

Hope it helps.

ivanhuay commented 7 years ago

I took some time to solve it because I had not noticed. Thank you very much