Loading docs/ref/models/querysets.txt +1 −1 Original line number Diff line number Diff line Loading @@ -955,7 +955,7 @@ This allows prefetching the same relation multiple times with a different >>> vegetarian_pizzas = Pizza.objects.filter(vegetarian=True) >>> Restaurant.objects.prefetch_related( ... Prefetch('pizzas', to_attr('menu')), ... Prefetch('pizzas', to_attr='menu'), ... Prefetch('pizzas', queryset=vegetarian_pizzas, to_attr='vegetarian_menu')) Lookups created with custom ``to_attr`` can still be traversed as usual by other Loading Loading
docs/ref/models/querysets.txt +1 −1 Original line number Diff line number Diff line Loading @@ -955,7 +955,7 @@ This allows prefetching the same relation multiple times with a different >>> vegetarian_pizzas = Pizza.objects.filter(vegetarian=True) >>> Restaurant.objects.prefetch_related( ... Prefetch('pizzas', to_attr('menu')), ... Prefetch('pizzas', to_attr='menu'), ... Prefetch('pizzas', queryset=vegetarian_pizzas, to_attr='vegetarian_menu')) Lookups created with custom ``to_attr`` can still be traversed as usual by other Loading