Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Support for non-input types? #558

Closed
markandrus opened this issue Feb 16, 2024 · 3 comments
Closed

Support for non-input types? #558

markandrus opened this issue Feb 16, 2024 · 3 comments

Comments

@markandrus
Copy link

I tried this out and, if I'm not mistaken, it only generates schemas (in my case, zod schemas) for input types. I would like to use this with non-input types as well (for example, to parse some JSON and ensure it adheres to the correct GraphQL type).

@efstajas
Copy link

efstajas commented Mar 7, 2024

I would also greatly appreciate this. We have some generic functions that cache data returned from GQL queries, and want to make this as safe as possible, which entails parsing the cached data with zod before returning it. For this, we need auto-generated zod schemas for all generated query types.

@MH4GF
Copy link
Contributor

MH4GF commented Jun 13, 2024

@markandrus @efstajas Wouldn't withObjectType solve this?

https://github.com/Code-Hex/graphql-codegen-typescript-validation-schema/blob/3a49a554b32d4c3121125c88a8e9f96c2e4b646f/README.md#withobjecttype

it('generate object type contains object type', async () => {
const schema = buildSchema(/* GraphQL */ `
type Book {
author: Author
title: String
}
type Author {
books: [Book]
name: String
}
`);
const result = await plugin(
schema,
[],
{
schema: 'zod',
withObjectType: true,
},
{},
);
expect(removedInitialEmitValue(result.content)).toMatchInlineSnapshot(`
"
export function BookSchema(): z.ZodObject<Properties<Book>> {
return z.object({
__typename: z.literal('Book').optional(),
author: AuthorSchema().nullish(),
title: z.string().nullish()
})
}
export function AuthorSchema(): z.ZodObject<Properties<Author>> {
return z.object({
__typename: z.literal('Author').optional(),
books: z.array(BookSchema().nullable()).nullish(),
name: z.string().nullish()
})
}
"
`)
for (const wantNotContain of ['Query', 'Mutation', 'Subscription'])
expect(result.content).not.toContain(wantNotContain);
});

@Code-Hex
Copy link
Owner

I close this issue because inactive. Please open again if you need anything else.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

4 participants