fastapi-sqlalchemy-asyncpg icon indicating copy to clipboard operation
fastapi-sqlalchemy-asyncpg copied to clipboard

something wrong with the delete api

Open sanwei111 opened this issue 7 months ago • 0 comments

@router.delete("/") async def delete_nonsense(name: str, db_session: AsyncSession = Depends(get_db)): nonsense = await Nonsense.find(db_session, name) return await nonsense.delete(nonsense, db_session)

can not work

sanwei111 avatar Jun 26 '24 02:06 sanwei111