Merge pull request #114 from jeffwidman/patch-2

Fix typo
This commit is contained in:
Syrus Akbary 2016-02-07 23:12:13 -08:00
commit 6853142232

View File

@ -121,7 +121,7 @@ Unlike a RESTful API, there is only a single URL from which GraphQL is accessed.
We are going to use Flask to create a server that expose the GraphQL schema under `/graphql` and a interface for querying it easily: GraphiQL under `/graphiql`. We are going to use Flask to create a server that expose the GraphQL schema under `/graphql` and a interface for querying it easily: GraphiQL under `/graphiql`.
Afortunately for us, the library `Flask-GraphQL` that we installed previously is making the task quite easy. Fortunately for us, the library `Flask-GraphQL` that we previously installed makes this task quite easy.
```python ```python
# flask_sqlalchemy/app.py # flask_sqlalchemy/app.py