In my SOLR I keep events that repeats themselves.
So, event A has something a repeat on the 11th 12th and 29th
Event b has repeat on the 2nd and 15th
Event c has on the 12th and 29th
I want to fetch the events ordered by their dates, I want it to be ordered by the first date in the collection.
Expected result:
Event B
A
C
The schema entry is
<fieldType name="tdate" class="solr.TrieDateField" omitNorms="true" precisionStep="6" positionIncrementGap="0"/>
<field name="date_start" type="tdate" indexed="true" stored="true" required="false" multiValued="true"/>
What would bethe URL I would use?