Client-Supplied Custom Sorting Using GraphQL
September 30, 2018
It’s not uncommon the need to sort/order data returned from an API, based on arguments sent by the client. With REST we could just use query-strings, but how to do it in GraphQL? Most databases allow to sort on multiple fields at the same time, and the sorting order can differ from one to another…