[Answer]-Django contains model with ManyToMany fields, but they are not available with query

1👍

I’ve solved this by use of the filter method, as follows:

example_list = Example.objects.filter(tags__tag__contains='jewellery').order_by('-date_submitted')[:10]

Leave a comment