File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -278,7 +278,7 @@ query getZuckProfile($devicePicSize: Int) {
278
278
279
279
Values for those variables are provided along with a GraphQL query, so they may be
280
280
substituted during execution. If providing JSON for the variables values, we
281
- could run this query and request profilePic of size 60 with :
281
+ could run this query and request profilePic of size 60 width :
282
282
283
283
``` js
284
284
{
@@ -418,7 +418,7 @@ will be present and `friends` will not.
418
418
Query variables can be used within fragments. Query variables have global scope
419
419
with a given operation, so a variable used within a fragment must be declared
420
420
in any top-level operation that transitively consumes that fragment. If
421
- variable is referenced in a fragment and is included by an operation that does
421
+ a variable is referenced in a fragment and is included by an operation that does
422
422
not define that variable, the operation cannot be executed.
423
423
424
424
### Inline fragments
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ GraphQL does not just verify if a request is syntactically correct.
5
5
Prior to execution, it can also verify that a request is valid
6
6
within the context of a given GraphQL schema. Validation is primarily
7
7
targeted at development-time tooling. Any client-side tooling
8
- should returns errors and not allow the formulation of queries
8
+ should return errors and not allow the formulation of queries
9
9
known to violate the type system at a given point in time.
10
10
11
11
Total request validation on the server-side during execution is optional. As
You can’t perform that action at this time.
0 commit comments