File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -521,8 +521,8 @@ Both of those queries give this result:
521
521
}
522
522
```
523
523
524
- The ` UseFragment ` and ` DuplicateFields ` queries will got the same result, but
525
- the latter has less copy paste ; if we wanted to add more fields, we could add
524
+ The ` UseFragment ` and ` DuplicateFields ` queries will both get the same result, but
525
+ ` UseFragment ` is less verbose ; if we wanted to add more fields, we could add
526
526
it to the common fragment rather than copying it into multiple places.
527
527
528
528
We defined the type system above, so we know the type of each object
@@ -672,7 +672,7 @@ fragment DroidFields on Droid {
672
672
673
673
This query is valid, but it's a bit verbose; named fragments were valuable
674
674
above when we used them multiple times, but we're only using this one once.
675
- Instead of using a named fragment, then, we can use an inline fragment; this
675
+ Instead of using a named fragment, we can use an inline fragment; this
676
676
still allows us to indicate the type we are querying on, but without naming
677
677
a separate fragment:
678
678
You can’t perform that action at this time.
0 commit comments