Skip to content
Merged
Show file tree
Hide file tree
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
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ All of the packages in the `apollo-server` repo are released with the same versi

* Upgrade `subscription-transport-ws` to 0.9.9 for Graphiql
* Remove tests and guaranteed support for Node 4 [PR #1024](https://github.com/apollographql/apollo-server/pull/1024)
* Cleanup docs [PR #1233](https://github.com/apollographql/apollo-server/pull/1233/files)

### v1.3.6

Expand Down
6 changes: 3 additions & 3 deletions docs/source/features/scalars-enums.md
Original file line number Diff line number Diff line change
Expand Up @@ -191,7 +191,7 @@ function oddValue(value) {
return value % 2 === 1 ? value : null;
}

const resovers = {
const resolvers = {
Odd: new GraphQLScalarType({
name: 'Odd',
description: 'Odd custom scalar type',
Expand Down Expand Up @@ -236,7 +236,7 @@ type Query {
}
```

A query migh look like this:
A query might look like this:

```graphql
query {
Expand Down Expand Up @@ -306,7 +306,7 @@ const resolvers = {
};
```

These don't change the public API at all and the resovers accept these value instead of the schema value, like so:
These don't change the public API at all and the resolvers accept these value instead of the schema value, like so:

```js
const resolvers = {
Expand Down