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

Allow configuration of zod optional/null type #308

Open
peniqliotuv opened this issue Feb 21, 2023 · 4 comments
Open

Allow configuration of zod optional/null type #308

peniqliotuv opened this issue Feb 21, 2023 · 4 comments
Labels
good first issue Good for newcomers

Comments

@peniqliotuv
Copy link

I'd love to use this library but since we redefine inputMaybeValue: 'T | undefined' in the graphql-codegen configuration, it's incompatible with the .nullish() that gets added to the zod schema when using graphql-codegen-tyespcript-validation-schema.

It would be great if we could have a configuration such as zodOptionalType that allowed us to specify optional or nullish.

@github-actions github-actions bot added the good first issue Good for newcomers label Feb 21, 2023
@Code-Hex
Copy link
Owner

@peniqliotuv Hi 👋

I'm sorry to delay this reply.

Could you tell me how to do this?

we redefine inputMaybeValue: 'T | undefined' in the graphql-codegen configuration

@peniqliotuv
Copy link
Author

Hey @Code-Hex ! No worries.
Yea - I'm looking for an ability to customize the nullish values generated by graphql-codegen-typescript-validation-schema.
An example API that would be nice:

...
    config:
      maybeSchemaValue: 'nullish' | 'null' | 'undefined'

This value would default to nullish.

The behavior of nullish would be akin to what's currently in the plugin today.

z.nullish()

Providing null

z.null()

Providing undefined

z.optional()

I omitted the yup equivalents for simplicity's sake, but hopefully this makes it clearer!

@almereyda
Copy link

I think instead of providing null, this should be nullable > .nullable().

Also to provide undefined, one needs to write optional, so that renders to .optional().

@niklasholm
Copy link

I'm also having this issue, my current workaround is to run sed -i 's/\.nullish()/.optional()/g' in afterAllFileWrite but it feels very hacky and prone to errors.

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

Successfully merging a pull request may close this issue.

4 participants