I am using JSONField to store the configuration parameter(user_types) as a list as follows:
["user_type1", "user_type2", "user_type3"]How to query to filter elements of type "user_type1"? The following query is not working:
rows=ConfigUserTable.objects.filter(user_types__in=["user_type1"])Thanks






