Igor Benav
Igor Benav
This is a question I see people asking a lot, so might be useful. Removing fastapi docs completely: ```python import FastAPI application = FastAPI(docs_url=None, redoc_url=None, openapi_url=None) ``` Injecting a dependency...
## 🔭To Do Not exactly a roadmap, more of a possible TODO kind of list: ### ⚡️API - [ ] Add a photo upload endpoint for users - [ ]...
This was mentioned in #90 ```python async def get_card(self, card_id: uuid.UUID): async with async_session_maker() as db: return await card_crud.get_joined( db=db, id=card_id, nest_joins=True, joins_config=[ JoinConfig( model=Article, join_on=Article.card_id == Card.id, join_type="left", join_prefix="articles_",...
There are a few sql things that are relevant and are currently missing from `FastCRUD`, I'll list some of them and you guys may add what I forget - [...
**Describe the bug or question** Handling something like this scenario: ```python router = APIRouter(prefix="/user/{user_id}") @router.get("/posts/{post_id}") def get_post(user_id: int, post_id: int): ... return {"user": user_id, "post:": post_id, "text": post_text} ``` ```sh...
First mentioned in #87 by @PaleNeutron """ filter user by `user.company.name == 'A'` ? Or filter company by user's name, `company.users.any(User.name == 'B')` """
Your current [CRUDBase](https://github.com/joaoflaviosantos/fastapi-async-sqlmodel-boilerplate/blob/main/backend/src/core/common/crud.py) version might have a few inconsistencies I eventually fixed in FastCRUD, plus a few other bugs before that. You should probably take a look at the [FastCRUD...
Added the tip in a more descriptive way, closes #4
### Discussed in https://github.com/benavlabs/fastcrud/discussions/247 Originally posted by **seklmco** September 3, 2025 Hello. To start off, I have to admit this library is an amazing time saver so thank you for...