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
I have a schema that has an array field (notificationEmails in the example below). The generated fragment for this schema is missing the field.
notificationEmails
Example schema:
type Note { text: String! } type Step { name: String! note: Note notificationEmails: [String!] }
Generated fragment:
fragment Note on Note { text } fragment Step on Step { name note { ...NoteNoNesting } }
Is there anything I may be doing wrong here?
The text was updated successfully, but these errors were encountered:
👍 I have the same problem with resolver that return union... generated fragments does not contain resolver...
union Note = Headline | Paragraph type Step { name: String! note: Note notificationEmails: [String!] }
Generated fragments
fragment Step on Step { name notificationEmails }
Sorry, something went wrong.
No branches or pull requests
I have a schema that has an array field (
notificationEmails
in the example below). The generated fragment for this schema is missing the field.Example schema:
Generated fragment:
Is there anything I may be doing wrong here?
The text was updated successfully, but these errors were encountered: