pathom

:pathom: https://github.com/wilkerlucio/pathom/ & https://pathom3.wsscode.com & https://roamresearch.com/#/app/wsscode
nivekuil 2021-05-06T00:08:31.289600Z

done, thanks for looking into it

👍 1
Siddharth Jain 2021-05-06T13:44:57.292900Z

Hi guys, In a query like this

[:catalogue/id
        {:products/search-results [:product/id :product/title :product/kind]}]
I want :products/search-results 's value sorted by :product/title , can I specify it here ?

Björn Ebbinghaus 2021-05-06T14:21:42.295800Z

You can just return the sorted list in your resolver. Alternatively, when you want your order to be dynamic, you can use query parameters: https://blog.wsscode.com/pathom/v2/pathom/2.2.0/connect/resolvers.html#_parameters

Siddharth Jain 2021-05-06T15:31:49.296900Z

thanks, I'll try 👍