Hi,
The existing API on 1_relativedaterange for querybuilder is working fine if the associated properties is of the type Date.
I have a requirement to filter the nodes search based a field called end date which is of the data type String.
Is there any method to cast a string to date and could it be used in query builder?
What works currently:
path=/content/abc/jcr:content/samplelist
p.hits=full
p.limit=-1
1_relativedaterange.property=jcr:created
1_relativedaterange.lowerBound=-6M
What is not working: always returns 0 even if there are list with that end date
path=/content/abc/jcr:content/samplelist
p.hits=full
p.limit=-1
1_relativedaterange.property=end_date
1_relativedaterange.lowerBound=-6M
Could you please assist or provide us suggestions on this?