Custom property is not a problem, you can modify above query changing
property like below: asset.[jcr:created] // change to
asset.[jcr:content/yourCustomProp]There could be a need to extend
damAssetLucene index to include your custom property.Regarding date
format, it seems you are storing your date as a string, and this will be
problematic, you will probably need some additional java code to filter
your results. I would recommenced to convert date into ISO 8601-based
compliant format, before yo...