When I search SOLR with query (grouptype is my field name)
/select?q=grouptype:*&wt=json
I get group values in human readable format ex: Type 1, Type 2 etc.
But when I do a faceted search
/select?q=*:*&rows=0&facet=on&facet.field=grouptype&wt=json
I get facet values like
"type1",9226
"type2",7668
How can I get facet values in human readable format like I got from the earlier query?