在Django Dynamic REST中过滤

时间:2018-09-20 20:27:21

标签: django django-rest-framework dynamic-rest

如何使用OR子句在Django动态REST(https://github.com/AltSchool/dynamic-rest)中进行过滤?

我需要实现

这样的queryset
User.objects.filter(Q(username="admin") | Q(first_name="test"))

是否可以通过请求GET查询参数(例如api/users?filter{username}=admin <OR> filter{first_name}=test来做到这一点?

0 个答案:

没有答案