I have a collection in SOLR named sample, and I am trying to do some grouping on the collection by running the below query
http://127.0.0.1:8983/solr/sample/select?q=*%3A*&wt=json&indent=true&facet=true&facet.pivot=Key1,Key2
This gives me correct result, with facet_counts after the search result.
But what I would like to have is the facet result in a .csv
format. I tried setting wt=csv
but that gives me only the search result in csv, not the facet part.
Is there any way to get the facet result also in csv format?
Thanks