Skip to content

Commit 1ac663a

Browse files
authored
Update Section 6 -- Execution.md
editorial formatting
1 parent 3a88989 commit 1ac663a

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

spec/Section 6 -- Execution.md

+9-9
Original file line numberDiff line numberDiff line change
@@ -15,20 +15,20 @@ A GraphQL service generates a response from a request via execution.
1515
being executed. Conceptually, an initial value represents the "universe" of
1616
data available via a GraphQL Service. It is common for a GraphQL Service to
1717
always use the same initial value for every request.
18-
- {extensions} (optional): A map reserved for implementers to extend the
19-
protocol however they see fit.
20-
21-
Note: Since future versions of the specification may add more information,
22-
implementers should not extend requests directly; instead, {extensions} provides
23-
a reserved location for implementers to include additional information. If
24-
present, {extensions} must be a map, but there are no additional restrictions on
25-
its contents. To avoid conflicts, we recommended implementers use unique
26-
prefixes for keys within {extensions}.
18+
- {extensions} (optional): A map reserved for implementation-specific additional
19+
information.
2720

2821
Given this information, the result of {ExecuteRequest(schema, document,
2922
operationName, variableValues, initialValue)} produces the response, to be
3023
formatted according to the Response section below.
3124

25+
Implementations should not add additional properties to a _request_, which may
26+
conflict with future editions of the GraphQL specification. Instead,
27+
{extensions} provides a reserved location for implementation-specific additional
28+
information. If present, {extensions} must be a map, but there are no additional
29+
restrictions on its contents. To avoid conflicts, keys should use unique
30+
prefixes.
31+
3232
Note: GraphQL requests do not require any specific serialization format or
3333
transport mechanism. Message serialization and transport mechanisms should be
3434
chosen by the implementing service.

0 commit comments

Comments
 (0)