Is there a trick to getting `orderBy` to work. I h...
# orm-help
b
Is there a trick to getting
orderBy
to work. I have a playground and it’s autofilling but swapping
orderBy: createdAt_DESC
with
orderBy: createdAt_ASC
not changing the order.
if you get stuck here: the trick is that you need to update your queries and resolvers to handle
orderBy
. I thought magic was happening, but it wasn’t 🙂. https://github.com/howtographql/react-apollo/pull/49/files
👍 2