<@U6Z07HY14> commented on <@U9J4TSD7Z>’s file <htt...
# prisma-whats-new
u
@lawjolla commented on @manticarodrigo’s file https://prisma.slack.com/files/U9J4TSD7Z/F9QG2K37E/prisma_feed_query.txt: First edit your type to include order_by, e.g.
Copy code
type Query {
  feed(..., orderBy: String): ...
}
Then in your resolver...
Copy code
feed(parent, args, ctx, info) {
    return ctx.db.query.posts({
      orderBy: args.orderBy
    }, info)
  },