Re: RE : Solr Date Range filtering using datapointfield (solr 8.8.2)

2022-03-21 Thread Reej Nayagam
Hi Thomas, Thanks. I just checked the document, It should be of the format -MM-DDThh:mm:ssZ or if need to pass milliseconds -MM-DDThh:mm:ss.xxxZ So when I tried this format in Solr admin UI it works fine. I'll handle it in code. Thank you Regards Reej On Mon, Mar 21, 2022 at 7:28 PM

Re: RE : Solr Date Range filtering using datapointfield (solr 8.8.2)

2022-03-21 Thread Thomas Corthals
Hi Reej, Have you tried with 2022-03-21T15:59:999Z (with a capital Z)? Regards, Thomas Op ma 21 mrt. 2022 om 12:20 schreef Reej Nayagam : > Hi All, > > In solr 4 , we had a date field and in schema, fieldType name = date and > class ="solr.*TrieDateField*" > when moving to solr8, we changed t

RE : Solr Date Range filtering using datapointfield (solr 8.8.2)

2022-03-21 Thread Reej Nayagam
Hi All, In solr 4 , we had a date field and in schema, fieldType name = date and class ="solr.*TrieDateField*" when moving to solr8, we changed the class to solr.*DatePointField*. Now while filtering using solr4, the effective_date_dt : [* TO 2022-03-21T15:59:999z] works but in solr8 the same th