DEV Community

[Comment from a deleted post]
Collapse
 
rcarlson profile image
Robert Carlson

File uploading is done using a multi-part form POST.

As far as using a POST to get data I totally understand that. Sometimes its just too much to send up complex aggregations and filters through a query-string. That being said, my team and I actually built a solution around this problem called 'Projections' which allows you to store complex MongoDB queries on the server and simply reference them as basic GET endpoints. You might find this solution a bit easier to implement as well. meshydb.com/blog/stored-procedures...