flask-rest-jsonapi icon indicating copy to clipboard operation
flask-rest-jsonapi copied to clipboard

Flask extension to build REST APIs around JSONAPI 1.0 specification.

Results 58 flask-rest-jsonapi issues
Sort by recently updated
recently updated
newest added
trafficstars

Has this library been tested with ToastedMarshmallow? We have been using this library to great effect recently in a project (for about 8 months), but we're now seeing some performance...

I am using a react-admin client to invoke my json-api backend..... I am getting the following URL: http://localhost:4500/parameters?filter[id][]=2&filter[id][]=3&filter[id][]=4 which is returning only one record, because is being traslated to: [{'name':...

Hello, As reported in issue https://github.com/miLibris/flask-rest-jsonapi/issues/110 I tested the example, but the solution is not complete (Resource part and Url routing are missing) Is it possible to share an example...

like {"data": {"type": "project", "id": "1", "attributes": {""zh_name": "\u7acb\u6865"}

When a single resource is not found, the api responds a 200 OK response with {"data": null}. There is even a test that checks that: `test_get_detail_object_not_found`. But the json:api is...

This is based on [the recommendations part of the spec](https://jsonapi.org/recommendations/#filtering), which lets you do things like: `GET /comments?filter[post]=1`, even though `filter[post]` isn't actually an integer. In addition, I've allowed queries...

Hi -- My model uses a sqlalchemy [dictionary based collection proxy](https://docs.sqlalchemy.org/en/13/orm/extensions/associationproxy.html#proxying-to-dictionary-based-collections). When serializing a model instance I get the following exception ``` File "/usr/lib/python3.7/site-packages/flask/app.py", line 2463, in __call__ return self.wsgi_app(environ,...

Allows users to provide fields like `get_schema_kwargs` as functions instead of dictionaries. These functions have access to the view's args and kwargs. For example: ```python class PersonDetail(ResourceDetail): schema = person_schema...