-
Notifications
You must be signed in to change notification settings - Fork 36
Open
Labels
enhancementNew feature or requestNew feature or request
Description
My API project uses TypeGraphQL to generate its schema from Prisma/Resolvers.
In TypeGraphQL, the way you control which fields of each Prisma model get included in the generated GraphQL models is by using a description annotation like: /// @TypeGraphQL.omit(input: true, output: true)
When generating json-schema using this library, we see descriptions on models like so:
"id": {
"type": "string",
"description": "@TypeGraphQL.omit(input: true)"
}
It would be great if I could add a pattern to omit descriptions in the generated json-schema or at least disable them outright.
Metadata
Metadata
Assignees
Labels
enhancementNew feature or requestNew feature or request