Skip to content

Commit be984cb

Browse files
Add validation rule that operation types exist
Right now the spec says that, for example, if the schema does not define a mutation root type, then the schema does not support mutations. But there's no validation rule for it, which means that many parsers (including graphql-js) treat a mutation as valid against such a schema. (Indeed, many end up considering *any* mutation as valid, since they don't know what type to validate the root selection set against.) This commit adds a validation rule to make the schema text explicit. Slated for discussion at the June 2 working group meeting. See also graphql/graphql-js#3592.
1 parent 78ccda7 commit be984cb

File tree

2 files changed

+42
-4
lines changed

2 files changed

+42
-4
lines changed

spec/Section 3 -- Type System.md

+6-4
Original file line numberDiff line numberDiff line change
@@ -148,12 +148,14 @@ type system where those operations begin.
148148
The {`query`} root operation type must be provided and must be an Object type.
149149

150150
The {`mutation`} root operation type is optional; if it is not provided, the
151-
service does not support mutations. If it is provided, it must be an Object
152-
type.
151+
service does not support mutations (see
152+
[Operation Type Existence](#sec-Operation-Type-Existence)). If it is provided,
153+
it must be an Object type.
153154

154155
Similarly, the {`subscription`} root operation type is also optional; if it is
155-
not provided, the service does not support subscriptions. If it is provided, it
156-
must be an Object type.
156+
not provided, the service does not support subscriptions (see
157+
[Operation Type Existence](#sec-Operation-Type-Existence))s. If it is provided,
158+
it must be an Object type.
157159

158160
The {`query`}, {`mutation`}, and {`subscription`} root types must all be
159161
different types if provided.

spec/Section 5 -- Validation.md

+36
Original file line numberDiff line numberDiff line change
@@ -129,6 +129,42 @@ extend type Dog {
129129

130130
## Operations
131131

132+
### All Operation Definitions
133+
134+
#### Operation Type Existence
135+
136+
**Formal Specification**
137+
138+
- For each operation definition {operation} in the document.
139+
- Let {operationRootType} be the root type in {schema} corresponding to the
140+
type of {operation}.
141+
- {operationRootType} must exist.
142+
143+
**Explanatory Text**
144+
145+
Each operation must reference an operation type which has a valid root type
146+
in the schema.
147+
148+
For example given the following schema:
149+
150+
```graphql example
151+
type Query {
152+
hello: String
153+
}
154+
```
155+
156+
The following operation is valid:
157+
158+
```graphql example
159+
query helloQuery { hello }
160+
```
161+
162+
While the following operation is invalid:
163+
164+
```graphql example
165+
mutation goodbyeMutation { goodbye }
166+
```
167+
132168
### Named Operation Definitions
133169

134170
#### Operation Name Uniqueness

0 commit comments

Comments
 (0)