@@ -480,7 +480,7 @@ describe('Execute: defer directive', () => {
480
480
] ) ;
481
481
} ) ;
482
482
483
- it ( 'Does not (yet) separately emit defer fragments with different labels with varying subfields' , async ( ) => {
483
+ it ( 'Separately emits defer fragments with different labels with varying subfields' , async ( ) => {
484
484
const document = parse ( `
485
485
query HeroNameQuery {
486
486
hero {
@@ -516,7 +516,6 @@ describe('Execute: defer directive', () => {
516
516
data : {
517
517
hero : {
518
518
id : '1' ,
519
- name : 'Luke' ,
520
519
} ,
521
520
} ,
522
521
path : [ ] ,
@@ -525,7 +524,6 @@ describe('Execute: defer directive', () => {
525
524
{
526
525
data : {
527
526
hero : {
528
- id : '1' ,
529
527
name : 'Luke' ,
530
528
} ,
531
529
} ,
@@ -538,7 +536,7 @@ describe('Execute: defer directive', () => {
538
536
] ) ;
539
537
} ) ;
540
538
541
- it ( 'Does not (yet) separately emit defer fragments with varying subfields of same priorities but different level of defers' , async ( ) => {
539
+ it ( 'Separately emits defer fragments with varying subfields of same priorities but different level of defers' , async ( ) => {
542
540
const document = parse ( `
543
541
query HeroNameQuery {
544
542
hero {
@@ -580,7 +578,6 @@ describe('Execute: defer directive', () => {
580
578
{
581
579
data : {
582
580
hero : {
583
- id : '1' ,
584
581
name : 'Luke' ,
585
582
} ,
586
583
} ,
@@ -593,7 +590,7 @@ describe('Execute: defer directive', () => {
593
590
] ) ;
594
591
} ) ;
595
592
596
- it ( 'Does not (yet) separately emit nested defer fragments with varying subfields of same priorities but different level of defers' , async ( ) => {
593
+ it ( 'Separately emits nested defer fragments with varying subfields of same priorities but different level of defers' , async ( ) => {
597
594
const document = parse ( `
598
595
query HeroNameQuery {
599
596
hero {
@@ -633,7 +630,6 @@ describe('Execute: defer directive', () => {
633
630
{
634
631
data : {
635
632
hero : {
636
- id : '1' ,
637
633
name : 'Luke' ,
638
634
} ,
639
635
} ,
0 commit comments