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

the specification is now rc3 and waiting implementation for finalizing the general availability.

Having a list field on schema is giving an error after upgrading to the latest version. The get_nested_fields function is trying to access an attribute 'container' on a list field,...

Fix for https://github.com/miLibris/flask-rest-jsonapi/issues/209 Going to calculate the sparse field before calling the schema constructor rather than calling `_init_fields` again because they've labelled it explicitly as a private API. Also, now...

Hi, and thank you for this project I tried running this sample shortcut relationship filter against the example api, but I ran into a problem that looks like `GET /persons?filter=[{"name":"computers__serial","op":"ilike","val":"%Amstrad%"}]...

The 'only' attribute is set only after the schema has been instantiated in the `compute_schema` method, and so the set of attributes that are then returned in the `dump` method...

Marshmallow 2.18.0 raises ChangedInMarshmallow3Warning for nested schemas which is annoying when running tests and clogs the logs. Marshmallow should be updated to 2.18.1 where this issue was fixed. https://marshmallow.readthedocs.io/en/3.0/changelog.html https://github.com/marshmallow-code/marshmallow/pull/1136

This PR aims to improve test reliability of test `test_api` by resetting `api.app.view_functions` to the initial state by calling method `clear` The test can fail in this way by running...

I have this issue after upgrading from 0.30.1 to 0.31.0 or 0.31.2 The reads work, but my update is failing. ``` curl -X PATCH -d '{ "data":{ "type": "email", "id":...

If not using debug mode, non-JsonApiExceptions are only returned to the requestor and not logged. This makes it difficult to detect when requests are failing and what is causing the...