anyone know how to use delegrate schema with prism...
# prisma-client
l
anyone know how to use delegrate schema with prisma-client? just like something below in prisma-bindling:
Copy code
@Query('post')
  async getPost(@Args() args, @Info() info): Promise<Post> {
    return <http://this.prisma.query.post|this.prisma.query.post>(args, info);
  }
here is a issue: https://github.com/prisma/prisma/issues/3103