In my same sample scenario, would this prevent me from accessing the "offline" articles in the admin or from python? Can you create a more specific query in get_list() that cancels that where_constraints? eg,
If I changed my model to:
class Article(Model):
online = BooleanField()
class META:
where_constraints = {'online__exact': True}
would this return all the offline articles or would it return nothing?
offline_articles = articles.get_list(online__exact=False)
