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
Copy file name to clipboardExpand all lines: packages/apollo-federation/src/service/__tests__/buildFederatedSchema.test.ts
+55Lines changed: 55 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -73,6 +73,61 @@ type Money {
73
73
`);
74
74
});
75
75
76
+
it('should preserve description text in generated SDL',async()=>{
77
+
constquery=`query GetServiceDetails {
78
+
_service {
79
+
sdl
80
+
}
81
+
}`;
82
+
constschema=buildFederatedSchema(gql`
83
+
"A user. This user is very complicated and requires so so so so so so so so so so so so so so so so so so so so so so so so so so so so so so so so much description text"
0 commit comments