Skip to content

Commit 1e67a0d

Browse files
authored
Update Section 5 -- Validation.md
1 parent e9f4c82 commit 1e67a0d

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

spec/Section 5 -- Validation.md

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Validation
22

3-
GraphQL does not just verify if a request is syntactically correct, but also
3+
GraphQL service does not just verify if a request is syntactically correct, but also
44
ensures that it is unambiguous and mistake-free in the context of a given
55
GraphQL schema.
66

@@ -13,9 +13,8 @@ Typically validation is performed in the context of a request immediately before
1313
execution, however a GraphQL service may execute a request without explicitly
1414
validating it if that exact same request is known to have been validated before.
1515
For example: the request may be validated during development, provided it does
16-
not later change, or a service may validate a request once and memoize the
17-
result to avoid validating the same request again in the future. Any client-side
18-
or development-time tool should report validation errors and not allow the
16+
not later change. Any client-side or development-time
17+
tool should report validation errors and not allow the
1918
formulation or execution of requests known to be invalid at that given point in
2019
time.
2120

0 commit comments

Comments
 (0)