User.objects.first() get specific id user in django

User.objects.first() retrieves the first User object from the database using Django's object-relational mapping (ORM) system. It internally performs a SELECT query on the user table and returns the first user object based on the default ordering defined in the User model.