Concept Flow - all() and filter() methods
Start QuerySet
Call all()
→Return all objects
Call filter(condition)
→Check each object
Object matches?
Include object
Return filtered objects
The all() method returns all objects in the database table, while filter() checks each object against a condition and returns only those that match.