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

Constraints from directives are not applied to generated zod schema #750

Closed
llwire opened this issue Jul 24, 2024 · 2 comments
Closed

Constraints from directives are not applied to generated zod schema #750

llwire opened this issue Jul 24, 2024 · 2 comments
Labels
good first issue Good for newcomers

Comments

@llwire
Copy link

llwire commented Jul 24, 2024

The plugin isn't applying the constraints from the GraphQL input definition to the generated zod schema. Based on what I can tell from the codebase, everything seems to be configured correctly. Am I missing something here?

Current config definitions:

overwrite: true
generates:
  ...
  ./src/graphql/__generated__/partnerApiValidations.ts:
    schema: '...'
    config:
      schema: zod
      strictScalars: true
      directives:
        constraint:
          min: min
          max: max
          pattern: [regex, /$1/, "invalid input"]
          startsWith: [regex, /^$1/, "invalid input"]
          format:
            email: email
            uri: url
            emoji: emoji
    plugins:
      - typescript-validation-schema

Directive definition:

  directive @constraint(min: Int, max: Int, pattern: String, startsWith: String, format: ConstraintFormat) on INPUT_FIELD_DEFINITION

  enum ConstraintFormat {
    email
    uri
  }

Directive used as:

  input ProductCreateInput {
    title: String! @constraint(min: 5, max: 80)
  }

Codegen output:

export function ProductCreateInputSchema(): z.ZodObject<Properties<ProductCreateInput>> {
  return z.object({
    title: z.string()
  })
}
@github-actions github-actions bot added the good first issue Good for newcomers label Jul 24, 2024
@Code-Hex
Copy link
Owner

Code-Hex commented Nov 8, 2024

@llwire I'm sorry for the delay. Your code generated what you expected properly with my local environment.

export function ProductCreateInputSchema(): z.ZodObject<Properties<ProductCreateInput>> {
    return z.object({
     title: z.string().min(5).max(80)
    })
  }

I would like you to check again to see if other settings are affecting it, or if the schema has been merged into one file.

@llwire
Copy link
Author

llwire commented Nov 14, 2024

Thanks for the response @Code-Hex!

I did some digging and the issues was on my side. I was pointing codegen to the api schema rather than the actual schema file, ie. localhost:4000/graphql instead of ./src/graphql/api/partner/schema/index.ts. Since the directives get stripped from the server response, there was no way for the validation schema to be properly generated.

In case anyone runs into this, my complete working config looks like this:

overwrite: true
require:
  - "ts-node/register/transpile-only"
generates:
  ./src/graphql/__generated__/partnerApiValidations.ts:
    schema: './src/graphql/api/partner/schema/index.ts'
    config:
      schema: zod
      strictScalars: true
      directives:
        constraint:
          min: min
          max: max
          pattern: [regex, /$1/, "invalid input"]
          startsWith: [regex, /^$1/, "invalid input"]
          format:
            email: email
            uri: url
            emoji: emoji
    plugins:
      - typescript-validation-schema

The require setting was necessary for codegen to properly read the schema from the TS file.

@llwire llwire closed this as completed Nov 14, 2024
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

No branches or pull requests

2 participants