django-rest-framework-bulk
django-rest-framework-bulk copied to clipboard
if self.instance causes queryset to be evaluated
I know this project is possibly declared dead, but just fyi, there are places where the construct:
if instance:
....
is used, and I am finding it evaluates the entire queryset, causing long operations.
it probably should be if instance is not None.