I have a model (1) that has a field pointing to another model (2). I have a list of values coming from model (2) and I would like to filter objects in model(1) on all of them.
Basically I want to do this:
SomeModel.objects.filter(field1=x OR field1=y OR field1=z)
Is this possible, can't find anything in docs.