@@ -1450,15 +1450,15 @@ objects have a separate type in the system.
14501450
14511451**Circular References **
14521452
1453- Input Objects are allowed to reference other Input Objects as field types . A
1454- circular reference occurs when an Input Object references itself either directly
1453+ Input Objects are allowed to reference other Input Objects as field types . A
1454+ circular reference occurs when an Input Object references itself either directly
14551455or through referenced Input Objects .
14561456
14571457Circular references are generally allowed , however they may not be defined as an
1458- unbroken chain of Non -Null singular fields . Such Input Objects are invalid
1458+ unbroken chain of Non -Null singular fields . Such Input Objects are invalid
14591459because there is no way to provide a legal value for them .
14601460
1461- This example of a circularly -referenced input type is valid as the field `self `
1461+ This example of a circularly -referenced input type is valid as the field `self `
14621462may be omitted or the value {null }.
14631463
14641464```graphql example
@@ -1477,7 +1477,7 @@ input Example {
14771477}
14781478```
14791479
1480- This example of a circularly -referenced input type is invalid as the field
1480+ This example of a circularly -referenced input type is invalid as the field
14811481`self ` cannot be provided a finite value .
14821482
14831483```graphql counter -example
@@ -1487,7 +1487,7 @@ input Example {
14871487}
14881488```
14891489
1490- This example is also invalid , as there is a non -null singular circular reference
1490+ This example is also invalid , as there is a non -null singular circular reference
14911491via the `First .second ` and `Second .first ` fields .
14921492
14931493```graphql counter -example
0 commit comments