FastAPI - Database Integration
Given this FastAPI async function using Motor, what will be the output if the user is found?
async def get_user(db, user_id):
user = await db.users.find_one({"_id": user_id})
return user