最近の検索


最近の検索はありません

how to sort organizations alphabetically while retrieving organizations using search API.



投稿日時:2022年2月07日

i am using following code to retrieve organizations.


client.request('/api/v2/search.json?'+encodeURI('query=type:organization name:'+searchString+'*')).then(updateUI);

 

i want to sort results according to alphabetical order of organizations names. i have tried sort_by parameter but didn't worked.


0

1

1件のコメント

image avatar

Sebastiaan (Sparkly ⭐)

Community Moderator

Hey suyogAgent,

You probably want to sort it on your end.

Something like:

organizations.sort((a, b) => a.name.localeCompare(b.name));

 

0


サインインしてコメントを残してください。

お探しのものが見つかりませんか?

新規投稿