This query returns all cones with a chocolate scoop and a vanilla scoop.
VANILLA, CHOCOLATE, MINT, STRAWBERRY = 1, 2, 3, 4 # constants for flavors
choco_vanilla_cones = IceCream.objects.filter(scoops__contains=[CHOCOLATE, VANILLA])
Don't forget to import the IceCream
model from your models.py
file.
Also bear in mind that django will not create an index for ArrayField
s. If you are going to search them, you are going to need an index and it will need to be manually created with a call to RunSQL in your migrations file.