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
// FIXME: CompanyResolvers should only have taxCode resolver because it is part of the `@provides` directive in `Book.editor`
572
+
// `DateOfBirthResolvers` should not be generated because every field is marked with @external
573
+
expect(content).not.toBeSimilarStringTo('export type DateOfBirthResolvers');
574
+
575
+
// `PlaceOfBirthResolvers` should not be generated because the type is marked with @external, even if `User.placeOfBirth` is not marked with @external
576
+
expect(content).not.toBeSimilarStringTo('export type PlaceOfBirthResolvers');
577
+
578
+
// FIXME: `CompanyResolvers` should only have taxCode resolver because it is part of the `@provides` directive in `Book.editor`, even if the whole `Company` type is marked with @external
0 commit comments