You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Dec 8, 2021. It is now read-only.
The generated [Type]Parent interface is compatible with typescript's --strictNullChecks setting if the type includes an optional field. With --strictNullChecks enabled, null and undefined are treated as different values.
The related issue that is now causing the break: #25
Steps to reproduce
typeUser {
name: String
}
typeQuery {
user: User
}
Expected results
Should produce a resolver type that allows for undefined values
Description
The generated
[Type]Parent
interface is compatible with typescript's--strictNullChecks
setting if the type includes an optional field. With--strictNullChecks
enabled,null
andundefined
are treated as different values.The related issue that is now causing the break:
#25
Steps to reproduce
Expected results
Should produce a resolver type that allows for undefined values
Actual results
Versions
The text was updated successfully, but these errors were encountered: