Expand my Community achievements bar.

SOLVED

Japanese | Is AEM Query Builder sorting capable to do Japanese Character sorting ?

Avatar

Community Advisor

Hi all

 

    In my project , we have to do sorting of the content based on the Japanese title. We are sorting the results using orderby predicate, but I am skeptical. I am not sure if it is really doing the sorting of the Japanese . Has anyone worked on a similar requirement and was able to do the sorting ? 

 

Thanks

Veena

1 Accepted Solution

Avatar

Correct answer by
Administrator

Query Builder should work on Japanese characters. 

See: https://experienceleaguecommunities.adobe.com/t5/adobe-experience-manager/query-builder-doesn-t-give... 

 

Might need to change the querybuilder API parameters as below.

 

parms.put("property", "key");

parms.put("property.value","%"+value+"%");

parms.put("property.operation", "like");



Kautuk Sahni

View solution in original post

2 Replies

Avatar

Correct answer by
Administrator

Query Builder should work on Japanese characters. 

See: https://experienceleaguecommunities.adobe.com/t5/adobe-experience-manager/query-builder-doesn-t-give... 

 

Might need to change the querybuilder API parameters as below.

 

parms.put("property", "key");

parms.put("property.value","%"+value+"%");

parms.put("property.operation", "like");



Kautuk Sahni