コミュニティアチーブメントバーを展開する。

Submissions are now open for the 2026 Adobe Experience Maker Awards.

Mark Solution

この会話は、活動がないためロックされています。新しい投稿を作成してください。

解決済み

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 受け入れられたソリューション

Avatar

正解者
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

元の投稿で解決策を見る

2 返信

Avatar

正解者
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

Avatar

Community Advisor

Thanks @kautuk_sahni . Will check that