Level 1
Level 2
Sign in to Community
Learn more
Sign in to view all badges
Expand my Community achievements bar.
4/11/23
4/19/23
@vhochsteinTef Is this related to the AEM Omni search Or published in-site search? can you please share more details related to this?
4/23/23
Hi, thanks for reaching out.
Let me add a code example..
Query query = queryBuilder.createQuery(PredicateGroup.create(createSearchMapQuery(searchTerm,searchFilter,startResult)), session); SearchResult result = query.getResult(); private Map<String,String> createSearchMapQuery(String searchText,String[] searchFilter, int startResult){ Map<String, String> map = new HashMap<>(); map.put("path", "/content/testproject/de/de_DE"); map.put("type", "cq:Page"); map.put("fulltext", searchText); return map; }
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Views
Like
Replies
Likes