You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
for a project that use drf-yasg, i use CallableFilter for model properties that returns queryset.
But when doc was generated with drf-yasg, many lookups were generated when I didn't create them.
Would there be a possibility to choose that this method only returns the custom lookups?
A parameter custom_lookups_only=False in the __init__ of CallableFilter for example?
The text was updated successfully, but these errors were encountered:
Hi,
for a project that use drf-yasg, i use CallableFilter for model properties that returns queryset.
But when doc was generated with drf-yasg, many lookups were generated when I didn't create them.
For now, I override the lookups method like this:
Would there be a possibility to choose that this method only returns the custom lookups?
A parameter
custom_lookups_only=False
in the__init__
ofCallableFilter
for example?The text was updated successfully, but these errors were encountered: