-
The query which has a corresponding API call - https://www.courtlistener.com/?q=%22tenant%20landlord%20dispute%22%20%20dateFiled%3A%5B2024-01-01%20TO%202024-04-30%5D&type=o&order_by=dateFiled%20desc&stat_Precedential=on does not restrict results between the specified dateFiled. How can I correctly formulate the query to achieve this please? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 3 replies
-
I think this is a bit out of sync because of our transition from Solr to Elastic search, sorry. A simple solution is to use the If you need to do a different field and want to use the query box, then I think the distinction is that one (Solr, I think) uses ISO-8601 with the time, and the other (elastic) uses ISO-8601 without the time. |
Beta Was this translation helpful? Give feedback.
I think this is a bit out of sync because of our transition from Solr to Elastic search, sorry.
A simple solution is to use the
filed_after
andfiled_before
parameters. Something like:https://www.courtlistener.com/?q=%22tenant%20landlord%20dispute%22&type=o&order_by=score%20desc&stat_Precedential=on&filed_after=07%2F09%2F2024&filed_before=07%2F10%2F2024
If you need to do a different field and want to use the query box, then I think the distinction is that one (Solr, I think) uses ISO-8601 with the time, and the other (elastic) uses ISO-8601 without the time.