Here's a proposal
- Create garph types from Zod types:
const type = g.zodType('name', yourZodType)
- Create garph scalars from Zod types:
const type = g.zodScalar('name', yourZodType)
- Create garph inputs from Zod types:
const type = g.zodInput('name', yourZodType)
- Create Zod types from Garph types:
Here's a proposal