File tree Expand file tree Collapse file tree 1 file changed +10
-2
lines changed Expand file tree Collapse file tree 1 file changed +10
-2
lines changed Original file line number Diff line number Diff line change @@ -195,7 +195,11 @@ union SomeUnion = Foo | Biz
195
195
expect ( extendedSchema ) . to . not . equal ( testSchema ) ;
196
196
expect ( printSchema ( testSchema ) ) . to . equal ( originalPrint ) ;
197
197
expect ( printSchema ( extendedSchema ) ) . to . equal (
198
- `type Bar implements SomeInterface {
198
+ `schema {
199
+ query: Query
200
+ }
201
+
202
+ type Bar implements SomeInterface {
199
203
name: String
200
204
some: SomeInterface
201
205
foo: Foo
@@ -312,7 +316,11 @@ union SomeUnion = Foo | Biz
312
316
expect ( extendedSchema ) . to . not . equal ( testSchema ) ;
313
317
expect ( printSchema ( testSchema ) ) . to . equal ( originalPrint ) ;
314
318
expect ( printSchema ( extendedSchema ) ) . to . equal (
315
- `type Bar implements SomeInterface {
319
+ `schema {
320
+ query: Query
321
+ }
322
+
323
+ type Bar implements SomeInterface {
316
324
name: String
317
325
some: SomeInterface
318
326
foo: Foo
You can’t perform that action at this time.
0 commit comments