Japanese | Is AEM Query Builder sorting capable to do Japanese Character sorting ? | Community
Skip to main content
VeenaVikraman
New Participant
August 31, 2022
Solved

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

  • August 31, 2022
  • 1 reply
  • 755 views

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

This post is no longer active and is closed to new replies. Need help? Start a new post to ask your question.
Best answer by kautuk_sahni

Query Builder should work on Japanese characters. 

See: https://experienceleaguecommunities.adobe.com/t5/adobe-experience-manager/query-builder-doesn-t-give-results-specifically-on-the-chinese/td-p/351747 

 

Might need to change the querybuilder API parameters as below.

 

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

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

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

1 reply

kautuk_sahni
kautuk_sahniAccepted solution
Employee
August 31, 2022

Query Builder should work on Japanese characters. 

See: https://experienceleaguecommunities.adobe.com/t5/adobe-experience-manager/query-builder-doesn-t-give-results-specifically-on-the-chinese/td-p/351747 

 

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
VeenaVikraman
New Participant
September 2, 2022

Thanks @kautuk_sahni . Will check that