I have built our search system user interface with Solarium. I see that, prior to querying, I can easily set up my select query object using ->getFacetSet()->createFacetField('xyz')->setField('xyz')...
But my Solr requestHandler already returns all the facets I need. In my resultset I can't see a way to retrieve the facets that Solr would normally hand back by default.
Is it possible? Or must I explicitly request all facets through Solarium no matter what, essentially duplicating work I've done in the requestHandler?