flask-rest-jsonapi
flask-rest-jsonapi copied to clipboard
Flask extension to build REST APIs around JSONAPI 1.0 specification.
Hi, i am using [fastapi](https://github.com/tiangolo/fastapi) to deploy my backend, and using this repo to help my api code create. i found a problem when fastapi work with this repo, fastapi...
I went through the documentation to clear out some of the grammar issues. In some sections I'm still not sure I really understood what the text wants to convey. In...
Following code: ```python from flask_rest_jsonapi import Api from flask_jwt_extended import jwt_required api = Api(decorators=(jwt_required,)) ``` no longer causes JWT validation meaning I'm able to access endpoints with or without JWT....
It would be better to implement **method-specific decorators** to give more flexibility of use as appropriate by transforming this definition: ```python3 class PersonList (ResourceDetail): decorators = (cached, login_required) ``` in...
Corrected a typo and a grammatical error.
Hey everyone! I was wondering, how are you guys generating documentation about your Schemas, Resources, endpoints? Using apispec I was able to generate descriptions about the Schemas, but something far...
I realize the tooling for JSONAPI is not very popular, but we have to maintain our code which is using the library heavily. It's known that this repo is not...
Such kind of requests always returns empty list: Request: `/addresses/43/values` Response: `{ "data": [], "links": {"self": "http://127.0.0.1:5000/address_values"}, "meta": {"count": 0}, "jsonapi": {"version": "1.0"} }` If I try to get the...
hello, I want to prevent from sending Id in Requests related to ResourceDetail due to security things. I want to handle the object via a token that is generated by...
Hi, I want to skip creating an object if it already exists. Using `before_create_object` I can check if the object already exists and then would like to return the object....