I'm using a DRF ModelSerializer to serve a one-field queryset, but the response returns as a list of dicts
[{"state": "AL"}, {"state": "AR"}, {"state": "AZ"}]
Is there any way to return a pure string list, like ["AL", "AR", "AZ"] ? I've explored other questions, but haven't found anything useful.