We are trying to implement search using Full text AEM query. For the keywords without special characters, we are able to get the results, but the presence of any special character is breaking and there is no result.
해결되었습니다! 솔루션으로 이동.
조회 수
답글
좋아요 수
@k_bobade Assuming you are using querybuilder.json, in above screen shot. Please check response marked as correct in below post:
Quoting from the same thread:
Try the XPATH or JCR-SQL2 equivalent of the above query which has support for wildcard character in jcr:contains
(You can arrive at the same using Explain Query: Tools -> Operations -> Diagnosis -> Query Performance -> Explain Query -> Key in your Query builder predicates -> You can see the XPATH and JCR-SQL2 equivalent and index used)
There is no explicit mention about wildcard support in fulltext Query Builder predicate.
@k_bobade Assuming you are using querybuilder.json, in above screen shot. Please check response marked as correct in below post:
Quoting from the same thread:
Try the XPATH or JCR-SQL2 equivalent of the above query which has support for wildcard character in jcr:contains
(You can arrive at the same using Explain Query: Tools -> Operations -> Diagnosis -> Query Performance -> Explain Query -> Key in your Query builder predicates -> You can see the XPATH and JCR-SQL2 equivalent and index used)
There is no explicit mention about wildcard support in fulltext Query Builder predicate.
Hello ,
In AEM special characters in search text are completely ignored and replaced by space.
For eg. hello@12 is searched as hello 12
will result in assets having either hello or 12 or both.