We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
__component
Actual response:
{ "id": 1, "__component": "some_category.some_name", "title": "...", ...
This is important, because in the dynamic zone, we want build different sections from the given data based on this key.
Basically, we get this type:
export type PageContentDynamicZone = ComponentA | ComponentB | ComponentC | Error; export type ComponentA = { __typename?: '...'; __component: 'some_category.some_name'; // <-- this is missing id: Scalars['ID']; title?: Maybe<Scalars['String']>; ... };
The text was updated successfully, but these errors were encountered:
@Stun3R Are you open to PRs regarding this?
Sorry, something went wrong.
No branches or pull requests
Actual response:
This is important, because in the dynamic zone, we want build different sections from the given data based on this key.
Basically, we get this type:
The text was updated successfully, but these errors were encountered: