Hello,
Can i give regular expression for path.
If i have to search in a path /content/geometrixx/*/products.
Any pointers on this would be helpful.
Thanks,
Meenakshi
Solved! Go to Solution.
As mentioned earlier, regex is not supported for path in the querybuilder.
You can do following things:
1. Specify multiple paths (if there are not too many folder entries):
group.1_path=/content/geometrixx/abc/products
group.2_path=/content/geometrixx/def/products
2. Query base path, example - /content/geometrixx/ and fine tune your index using lucene indexes. You can also filter the query result sets later using Java 8 stream APIs
Views
Replies
Total Likes
I don't think you can give a regex for path . Please go through this documentation for more understanding on QueryBuilder Query Builder API .
Views
Replies
Total Likes
These are not supported for paths but there are wildcard characters that can be used with other predicates like * , %
As mentioned earlier, regex is not supported for path in the querybuilder.
You can do following things:
1. Specify multiple paths (if there are not too many folder entries):
group.1_path=/content/geometrixx/abc/products
group.2_path=/content/geometrixx/def/products
2. Query base path, example - /content/geometrixx/ and fine tune your index using lucene indexes. You can also filter the query result sets later using Java 8 stream APIs
Views
Replies
Total Likes
Views
Likes
Replies
Views
Likes
Replies
Views
Likes
Replies