Carrying on from this example, I would like to perform a reverse query like this:
result = Topping.objects.all().prefetch_related('pizza_set')
I would expect this to return an array of arrays. Inside each individual array, the reverse lookup going back to pizza should itself be an array.
result = ['name':'Pineapple', 'pizza_set':[{'name':'Hawaiian'... ... }]]
As is, my query does not follow back through the pizza_set. Any ideas what I'm doing wrong?