Updated documentation

This commit is contained in:
Syrus Akbary 2016-09-08 21:35:52 -07:00
parent 751c4245c5
commit 9875526891
2 changed files with 6 additions and 12 deletions

View File

@ -23,11 +23,11 @@ Graphene also supports *SQLAlchemy*!
For instaling graphene, just run this command in your shell
```bash
pip install graphene
pip install graphene>=1.0.dev
# In case of need Django model support
pip install graphene[django]
pip install graphene-django>=1.0.dev
# Or in case of need SQLAlchemy support
pip install graphene[sqlalchemy]
pip install graphene-sqlalchemy>=1.0.dev
```
## 1.0 Upgrade Guide
@ -70,8 +70,6 @@ If you want to learn even more, you can also check the following [examples](exam
* **Basic Schema**: [Starwars example](examples/starwars)
* **Relay Schema**: [Starwars Relay example](examples/starwars_relay)
* **Django model mapping**: [Starwars Django example](examples/starwars_django)
* **SQLAlchemy model mapping**: [Flask SQLAlchemy example](examples/flask_sqlalchemy)
## Contributing

View File

@ -34,11 +34,11 @@ For instaling graphene, just run this command in your shell
.. code:: bash
pip install graphene
pip install graphene>=1.0.dev
# In case of need Django model support
pip install graphene[django]
pip install graphene-django>=1.0.dev
# Or in case of need SQLAlchemy support
pip install graphene[sqlalchemy]
pip install graphene-sqlalchemy>=1.0.dev
1.0 Upgrade Guide
-----------------
@ -84,10 +84,6 @@ If you want to learn even more, you can also check the following
- **Basic Schema**: `Starwars example <examples/starwars>`__
- **Relay Schema**: `Starwars Relay
example <examples/starwars_relay>`__
- **Django model mapping**: `Starwars Django
example <examples/starwars_django>`__
- **SQLAlchemy model mapping**: `Flask SQLAlchemy
example <examples/flask_sqlalchemy>`__
Contributing
------------