标签: django django-rest-framework dynamic-rest
如何使用OR子句在Django动态REST(https://github.com/AltSchool/dynamic-rest)中进行过滤?
OR
我需要实现
User.objects.filter(Q(username="admin") | Q(first_name="test"))
是否可以通过请求GET查询参数(例如api/users?filter{username}=admin <OR> filter{first_name}=test来做到这一点?
api/users?filter{username}=admin <OR> filter{first_name}=test