This method returns a single object that matches the given lookup parameters. If there is no match, it raises a DoesNotExist exception.
This method returns a queryset that contains all objects that match the given lookup parameters.
This method returns a queryset that excludes all objects that match the given lookup parameters.
This method returns a queryset that contains all objects in the database.
This method returns a queryset that is sorted based on the given field(s).
This method returns a queryset that contains a dictionary of values for the specified fields.
This method adds a calculated field to each object in the queryset.
This method returns the number of objects that match the given lookup parameters.
This method returns a boolean value indicating whether there is at least one object that matches the given lookup parameters.
This method returns a queryset that contains only unique values for the specified fields.
This method updates one or more fields for all objects that match the given lookup parameters.
This method deletes all objects that match the given lookup parameters.
This method returns a dictionary of calculated values for the specified fields.
This method returns the first object that matches the given lookup parameters, based on the ordering of the queryset.
This method returns the last object that matches the given lookup parameters, based on the ordering of the queryset.