Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add 5.2.4 Operation Type Exists #1098

Closed
wants to merge 7 commits into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
35 changes: 35 additions & 0 deletions spec/Section 5 -- Validation.md
Original file line number Diff line number Diff line change
Expand Up @@ -332,6 +332,41 @@ contain any number of operations, each of which may contain different root
fields. When executed, a document containing multiple subscription operations
must provide the operation name as described in {GetOperation()}.

### Operation Type Exists

#### Formal Specification

For each operation definition in the document:

- Let {operationType} be the type of the operation (`query`, `mutation`, or
`subscription`).
- The corresponding _root operation type_ for {operationType} must be defined in
the schema.

#### Explanatory Text

A schema defines the root operation types that it supports. Any document that
contains an operation of a type unsupported by the schema is invalid, since such
an operation cannot be executed.

While query operations are required for all schemas, mutation and subscription
operations are optional. If the schema does not include the necessary type for a
mutation or subscription operation defined in the document, it will be
considered invalid.

For example, the following document is valid if the schema includes a Mutation
type, but invalid if it does not:

```graphql example
mutation {
likeStory(storyID: 12345) {
story {
likeCount
}
}
}
```

## Fields

### Field Selections
Expand Down