fastapi-crudrouter icon indicating copy to clipboard operation
fastapi-crudrouter copied to clipboard

A dynamic FastAPI router that automatically creates CRUD routes for your models

Results 71 fastapi-crudrouter issues
Sort by recently updated
recently updated
newest added

I'm running into issues when running the following command, against an API generated by fastapi-crudrouter (which is great btw 🥇 ) ``` >> openapi-generator validate -i http://127.0.0.1:8000/openapi.json Validating spec (http://127.0.0.1:8000/openapi.json)...

Hi, `HTTPException(422, "Key already exists")` if raised for every `IntegrityError` on creation. This can be confusing. I was wondering whether it would be better to use `CRUDGenerator` `_raise` method to...

Hi All - a bit confused where to create this -- whether here or FastAPI. Please let me know where -- but I'll post here first :) So I use...

Custom success status code can be set - passed to constructor. When the code is 204, the schema should not be returned in the response body. Default for create route...

Hi @awtkns 👋 Thank you for this great library, really convenient and handy ❤️ For a couple of days I've been looking for a simple and clean way to build...

I'm using fastapi + tortoise, problem here is i was keep getting "NoValuesFetched" exception from tortoise when a model has relation with other models. so I jumped into TortoiseCRUDRouter class...

CRUDRouter should have parameters to set status_code, e.g. 201 for create, or 204 for update - if 204 is set don't return the response JSON

This PR adds automated Schemathesis tests to the test suite. Most of the tests currently fail, and I believe this is due to a bug in Schemathesis, described in https://github.com/schemathesis/schemathesis/issues/1335....

Amazing Framework, really love it, please update or place the patch endpoint to update certain data that have been passed while leaving the unspecified data intact in the database..

enhancement
help wanted
good first issue

Hi everyone, Is there any perspective of support for async SQLAlchemy? Im using AssyncSession. Thanks

enhancement