Solr Sort by Title using solarium

332 Views Asked by At

I try to sort by title ascending using solr and Solarium. I do this

$query->addSort('title', $query::SORT_ASC);

But it returns 500 whereas this

$query->addSort('itcreation_dateem_id', $query::SORT_ASC);

succeeds. How is it possible to do the sorting of title?

0

There are 0 best solutions below