miLibris / flask-rest-jsonapi

Flask extension to build REST APIs around JSONAPI 1.0 specification.
http://flask-rest-jsonapi.readthedocs.io
MIT License
598 stars 153 forks source link

Support for list of objects in POST method #173

Closed jnitin closed 4 years ago

jnitin commented 4 years ago

For my project i am using flask-rest-json api package to create REST API . Currently i am facing issue w.r.t using POST method with list of objects as shown below . Please let me know does support for this kind of json object is supported in flask-rest-json api or in json API spec . GET method is working fine to fetch list of plan without any issues. Basically each element is related to a row in DB and we would like to update multiple rows using one request.

Mainly I would like to know whether flask-rest-jsonapi support Enable bulk patching or deleting feature as provided in flask-restless

jnitin commented 4 years ago

As per JSON API spec 1.0 it seems bulk update / creation is not possible . Hence closing this issue .