File tree 1 file changed +3
-4
lines changed
1 file changed +3
-4
lines changed Original file line number Diff line number Diff line change 1
1
# Validation
2
2
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
4
4
ensures that it is unambiguous and mistake-free in the context of a given
5
5
GraphQL schema.
6
6
@@ -13,9 +13,8 @@ Typically validation is performed in the context of a request immediately before
13
13
execution, however a GraphQL service may execute a request without explicitly
14
14
validating it if that exact same request is known to have been validated before.
15
15
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
19
18
formulation or execution of requests known to be invalid at that given point in
20
19
time.
21
20
You can’t perform that action at this time.
0 commit comments