flask-restless icon indicating copy to clipboard operation
flask-restless copied to clipboard

NO LONGER MAINTAINED - A Flask extension for creating simple ReSTful JSON APIs from SQLAlchemy models.

Results 100 flask-restless issues
Sort by recently updated
recently updated
newest added

I have a case where I notify an external service when an object is deleted. I can be reasonably sure that it will succeed in the preprocessor, but I'd like...

enhancement

See [PEP484](https://www.python.org/dev/peps/pep-0484/) and [MyPy](https://github.com/python/mypy).

enhancement

- Fixes #558 by removing the included portion instead of trying to map the entire table.

I have most of my SQLAlchemy models setup quite similarly but flask-restless is querying "tag" which is a table that doesn't exist nor do I have it configured _anywhere_ in...

Error responses currently look like this: ``` json { "errors": [ { "code": null, "detail": "Accept header, if specified, must be the JSON API media type: application/vnd.api+json", "id": null, "links":...

bug

It would be a question or enhancement request. I was wondering if there is a way to convert Sqlachemy `BigInteger` to a string instead of a number in a dictionary...

enhancement
question

Is there a specific reason why postprocessors don't get fired when item is not found? I think that's the ideal place where to implement 'GET or INSERT' feature. I've got...

enhancement

When using PostgreSQL and Flask Restless, GET_MANY requests for large tables (>100K rows) can take up to a minute to return a response. This is because Flask Restless performs a...

enhancement

for example, i have a Topic class: ``` class Topic: id = Column() user = Column(Integer, ForeignKey()) title = Column() replies = Column(Integer, ForeignKey()) content = Column() publish_tm = Column()...

enhancement
documentation

"PUT_SINGLE" is a preprocessor type, bug "PUT" is not a a preprocessor type. If flask-restless throw exception when using "PUT", users will quickly know why their pre_put() not be excuted....

enhancement