Heinrich Wendel
Heinrich Wendel
https://orpc.unnoq.com/
https://trpc.io/
https://github.com/Bekacru/better-call
In the following example, the final post only has one (1) comment, whereas I would expect it to have two (2). ```ts const postSchema = z.object({ get comments() { return...
I'm trying to reproduce the following documented example: ```ts import { Collection } from "@msw/data" import z from "zod/v4" const postSchema = z.object({ get comments() { return z.array(commentSchema) }, })...