I'm trying to create a CQL filter on title, I'm only looking for pages that start with a wildcard pattern, not that contain the pattern.
For example, while looking for all pages whose titles start with the letter "A", I tried using a "With title" filter of "A*". This does find all pages that start with "A", but it also finds all pages where any word in the title starts with "A" -- for example, it also matches a page with the title "This Is A Page".
From reading the docs, it looks like under the covers the "With title" filter is using the Lucene "CONTAINS" filter, though I can't figure out if what I'm trying to do is possible.
Anyone have any ideas? Please help, thank you!