graphql-code-generator
graphql-code-generator copied to clipboard
A tool for generating code based on a GraphQL schema and GraphQL operations (query/mutation/subscription), with flexible support for custom plugins.
This PR contains the following updates: | Package | Change | [Age](https://docs.renovatebot.com/merge-confidence/) | [Confidence](https://docs.renovatebot.com/merge-confidence/) | |---|---|---|---| | [@changesets/cli](https://redirect.github.com/changesets/changesets/tree/main#readme) ([source](https://redirect.github.com/changesets/changesets)) | [`2.29.6` -> `2.29.8`](https://renovatebot.com/diffs/npm/@changesets%2fcli/2.29.6/2.29.8) |  |  | --- ###...
> **Note:** This PR body was truncated due to platform limits. This PR contains the following updates: | Package | Change | [Age](https://docs.renovatebot.com/merge-confidence/) | [Confidence](https://docs.renovatebot.com/merge-confidence/) | |---|---|---|---| | [@graphql-codegen/c-sharp](https://redirect.github.com/dotansimha/graphql-code-generator) |...
This PR contains the following updates: | Package | Change | [Age](https://docs.renovatebot.com/merge-confidence/) | [Confidence](https://docs.renovatebot.com/merge-confidence/) | |---|---|---|---| | [@theguild/components](https://redirect.github.com/the-guild-org/docs) ([source](https://redirect.github.com/the-guild-org/docs/tree/HEAD/packages/components)) | [`7.6.3` -> `7.6.5`](https://renovatebot.com/diffs/npm/@theguild%2fcomponents/7.6.3/7.6.5) |  |  | | [@theguild/tailwind-config](https://redirect.github.com/the-guild-org/shared-config)...
# Context Currently, there's high coupling between [typescript](https://the-guild.dev/graphql/codegen/plugins/typescript/typescript) and [typescript-operations](https://the-guild.dev/graphql/codegen/plugins/typescript/typescript-operations) plugins. Historically, these were designed to work together but since their roles and use cases slightly differ, it requires a...
### Which packages are impacted by your issue? @graphql-codegen/core ### Describe the bug Codegen doesn't throw any error if identical operations are present in different files ### Your Example Website...
### Is your feature request related to a problem? Please describe. Hello, I just wanted to flag that the `typescript` and `schema-ast` plugins don't seem to fully support the `@oneOf`...
### Is your feature request related to a problem? Please describe. defer and error on non nullable handling schema: ``` type Query { """ Error simulator """ errorSimulator: ErrorSimulatorResult }...
The new option `addTypenameToInterfaces` adds the `__typename` field to types resulting from interfaces. The field admits a union of string values, each the name of one of the concrete types...
Much like an `ObjectTypeDefinition`, an `InterfaceTypeDefinition` can also have parent interface types. With this change, the output reflects that. 🚨 **IMPORTANT: Please do not create a Pull Request without creating...
Currently, given a query like this— ```graphql query findUser($userId: ID!) { user(id: $userId) { id username role } } ``` —the generator creates this output (assuming `typescript-operations` and `near-operation-file` as...