Regular expressions are not natively supported in AEM Query Builder. However, you can still achieve some basic pattern matching using wildcards.
{
"path": "/content/mysite/en/",
"type": "cq:Page",
"property": "jcr:title",
"property.value": "page*",
"property.operation": "like"
}
In this example, we use "property.value": "page*"
with the "like" operation. The *
wildcard allows for any characters to come after "page." This will match nodes with titles like "page1," "page2," etc., under the path /content/mysite/en/
.