Fix typo in subscriptions.md (#1431)

Fixed a typo!
This commit is contained in:
Martin Eboh 2018-07-26 22:14:03 +01:00 committed by Evans Hauser
parent 79191397fa
commit ff22b0210a

View file

@ -17,7 +17,7 @@ const { PubSub } = require('apollo-server');
const pubsub = new PubSub();
```
Subscriptions are another root level type, similar to Query and Mutation. To start, we need add to add the `Subscription` type to our schema:
Subscriptions are another root level type, similar to Query and Mutation. To start, we need to add the `Subscription` type to our schema:
```js line=2-4
const typeDefs = gql`