sqlalchemy-jsonapi icon indicating copy to clipboard operation
sqlalchemy-jsonapi copied to clipboard

JSONAPI implementation for use with SQLAlchemy

Results 27 sqlalchemy-jsonapi issues
Sort by recently updated
recently updated
newest added

The spec allows for member names with underscores, but this library converts them to hyphens. I'd prefer that it at least be configurable to not do that, since it makes...

Hi Colton, Thank you for developing this great package. I am very grateful. Would it be possible to add some query optimization to the get_collection (and get_resource) method based on...

enhancement

Sadly, the docs are somewhat incomplete. Can you provide a fully working, complete example.py (like https://github.com/ColtonProvias/flask-jsonapi/blob/master/example.py, or the classical ToDo example) for Flask? I'm happy to help write some, but...

When I switch from 3.0.2 to any 4.X series I get a new error on startup: sqlalchemy_i18n.exc.UnknownLocaleError: Unknown locale **jsonapi_desc_for_attrs** given for instance of class . Locale is not one...

Eager Loading of relationships should be optional. This way queries can be limited and generation time can be reduced. So Colton of the future where you aren't tired, implement this.

Can I use reflection (from database instance) with this library? The example has specific models only. Thx!

Usage of `base._decl_class_registry` in the `JSONAPI` constructor causes an error in SQLAlchemy 1.4.x (Line 235 of serializer.py). Fix - replace with `base.registry._class_registry`