The 'all()' function in your interactive shell can be used as follows to display every item in your database:
* Where XYZ is a class you've generated in your models, XYZ.objects.all()
You can either use the get() function or the filter method to remove a specific element from your database, as seen below:
* pk=1 XYZ.objects.filter
* XYZ.objects(id=1)