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]
Source:stackexchange.com