Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Change dummy queryset qualifier from "all" to "none" #1683

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion django_filters/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -201,7 +201,7 @@ def resolve_field(model_field, lookup_expr):
https://docs.djangoproject.com/en/stable/ref/models/lookups/

"""
query = model_field.model._default_manager.all().query
query = model_field.model._default_manager.none().query
lhs = Expression(model_field)
lookups = lookup_expr.split(LOOKUP_SEP)

Expand Down
Loading