Advertisement
Guest User

Untitled

a guest
Mar 28th, 2020
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.18 KB | None | 0 0
  1. class ProductListApiView(generics.ListAPIView):
  2.     serializer_class = ProductSerializer
  3.  
  4.     def get_queryset(self):
  5.        
  6.         return Product.objects.filter(category__pk=4)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement