Forum Discussion
Hi ronaksomani
the format required for filtering by date in LiQL is documented, for example, in this page (this is for the "Message" resource).
You can then use the Freemarker date built-ins and our datesupport context object to manipulate appropriately your dates for using in LiQL queries.
Hope this helps,
- ronaksomani10 years agoMentor
Hi PaoloT ,
I have referred below links for date manipulation.
Tried below approaches :
<#assign date_weekago_number = datesupport.now.addDay(-90).millisecondsAsString?number />
which returns milliseconds as String : 1422380763694
<#assign date_weekago_number = datesupport.now.addDay(-90).getDateAsString() />
which returns date as String in format : 01-27-2015
To frame a LiQL query, I want to convert above strings (date and ms), in requried format.
But freemarker, expects string input in pre-requisite format to convert it into date object.
http://freemarker.org/docs/ref_builtins_string.html
Can you please suggest approach to convert above Strings in required date format.
"post_time" : "2013-09-09T13:42:08.762-07:00",
Related Content
- 7 months ago
- 4 years ago
- 4 years ago