我正在处理一个看起来像这样的查询:
filters = Q(is_default = False)
# Build the excludes and filters dynamically
if cut:
filters = filters & Q(mailbagstats__num_letters2__gt = int(cut) )
给定filters
Q
查询,我可以查询pop
其中一个吗?
我想Q(mailbagstats__num_letters2__gt= int(cut) )
从此 Q 查询中删除该查询,以获取新的过滤器。
通常,我使用列表,reduce
但这个列表是通过构造的, Q() & Q()
所以我不确定如何修改它。
感谢您提供的任何意见!