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
Huge thanks for implementing preResolveTypes, it's beautiful!
It seems to be dropping all supplemental type info (maybe, array, ...anything else?) on primitive types though (strings, numbers, etc). This data is being retained on the wrappers around nested object types:
exporttypesomeFragment = {
key: string; # should be `Maybe<string>`anotherKey: string; # should be string[]finalKey: Maybe<Array<{ key: string }>>;
}
Huge thanks for implementing
preResolveTypes
, it's beautiful!It seems to be dropping all supplemental type info (maybe, array, ...anything else?) on primitive types though (strings, numbers, etc). This data is being retained on the wrappers around nested object types:
Related to #2159
Environment:
@graphql-codegen/...
:^0.14.0
The text was updated successfully, but these errors were encountered: