最近搜索
没有最近搜索
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 条评论
Sebastiaan (Sparkly ⭐)
Hey suyogAgent,
You probably want to sort it on your end.
Something like:
0