2016-09-26 19:46:49 +03:00
|
|
|
Please read [UPGRADE-v1.0.md](/UPGRADE-v1.0.md) to learn how to upgrade to Graphene `1.0`.
|
2016-09-09 07:30:30 +03:00
|
|
|
|
|
|
|
---
|
|
|
|
|
2015-10-27 09:54:51 +03:00
|
|
|
# ![Graphene Logo](http://graphene-python.org/favicon.png) [Graphene](http://graphene-python.org) [![Build Status](https://travis-ci.org/graphql-python/graphene.svg?branch=master)](https://travis-ci.org/graphql-python/graphene) [![PyPI version](https://badge.fury.io/py/graphene.svg)](https://badge.fury.io/py/graphene) [![Coverage Status](https://coveralls.io/repos/graphql-python/graphene/badge.svg?branch=master&service=github)](https://coveralls.io/github/graphql-python/graphene?branch=master)
|
2015-09-24 12:11:50 +03:00
|
|
|
|
2015-10-11 01:20:52 +03:00
|
|
|
|
2015-11-30 11:25:18 +03:00
|
|
|
[Graphene](http://graphene-python.org) is a Python library for building GraphQL schemas/types fast and easily.
|
2015-10-30 23:40:36 +03:00
|
|
|
|
|
|
|
- **Easy to use:** Graphene helps you use GraphQL in Python without effort.
|
|
|
|
- **Relay:** Graphene has builtin support for Relay
|
2016-09-20 04:55:15 +03:00
|
|
|
- **Data agnostic:** Graphene supports any kind of data source: SQL (Django, SQLAlchemy), NoSQL, custom Python objects, etc.
|
2016-09-18 05:39:35 +03:00
|
|
|
We believe that by providing a complete API you could plug Graphene anywhere your data lives and make your data available
|
|
|
|
through GraphQL.
|
2015-09-24 12:11:50 +03:00
|
|
|
|
|
|
|
|
2016-09-18 05:39:35 +03:00
|
|
|
## Integrations
|
|
|
|
|
|
|
|
Graphene has multiple integrations with different frameworks:
|
|
|
|
|
|
|
|
| integration | Package |
|
|
|
|
|---------------|-------------------|
|
|
|
|
| Django | [graphene-django](https://github.com/graphql-python/graphene-django/) |
|
|
|
|
| SQLAlchemy | [graphene-sqlalchemy](https://github.com/graphql-python/graphene-sqlalchemy/) |
|
|
|
|
| Google App Engine | [graphene-gae](https://github.com/graphql-python/graphene-gae/) |
|
|
|
|
| Peewee | *In progress* ([Tracking Issue](https://github.com/graphql-python/graphene/issues/289)) |
|
2015-10-30 10:01:44 +03:00
|
|
|
|
|
|
|
|
2015-10-07 06:59:07 +03:00
|
|
|
## Installation
|
|
|
|
|
|
|
|
For instaling graphene, just run this command in your shell
|
|
|
|
|
|
|
|
```bash
|
2016-09-26 19:16:27 +03:00
|
|
|
pip install "graphene>=1.0"
|
2015-10-07 06:59:07 +03:00
|
|
|
```
|
|
|
|
|
2016-06-10 11:37:08 +03:00
|
|
|
## 1.0 Upgrade Guide
|
|
|
|
|
|
|
|
Please read [UPGRADE-v1.0.md](/UPGRADE-v1.0.md) to learn how to upgrade.
|
|
|
|
|
2015-10-01 19:40:51 +03:00
|
|
|
|
2015-10-27 09:54:51 +03:00
|
|
|
## Examples
|
2015-09-24 12:17:56 +03:00
|
|
|
|
2015-10-27 09:54:51 +03:00
|
|
|
Here is one example for get you started:
|
2015-09-24 12:17:56 +03:00
|
|
|
|
|
|
|
```python
|
2015-10-27 09:54:51 +03:00
|
|
|
class Query(graphene.ObjectType):
|
2015-11-12 09:15:28 +03:00
|
|
|
hello = graphene.String(description='A typical hello world')
|
2015-09-24 12:17:56 +03:00
|
|
|
|
2016-09-11 08:24:18 +03:00
|
|
|
def resolve_hello(self, args, context, info):
|
2015-10-27 09:54:51 +03:00
|
|
|
return 'World'
|
2015-09-24 12:17:56 +03:00
|
|
|
|
2015-10-01 12:08:00 +03:00
|
|
|
schema = graphene.Schema(query=Query)
|
2015-09-24 12:17:56 +03:00
|
|
|
```
|
|
|
|
|
2015-10-07 09:13:10 +03:00
|
|
|
Then Querying `graphene.Schema` is as simple as:
|
2015-09-24 12:17:56 +03:00
|
|
|
|
|
|
|
```python
|
|
|
|
query = '''
|
2015-10-27 09:54:51 +03:00
|
|
|
query SayHello {
|
|
|
|
hello
|
2015-09-24 12:17:56 +03:00
|
|
|
}
|
|
|
|
'''
|
2015-10-01 12:08:00 +03:00
|
|
|
result = schema.execute(query)
|
2015-09-24 12:17:56 +03:00
|
|
|
```
|
|
|
|
|
2015-10-30 10:01:44 +03:00
|
|
|
If you want to learn even more, you can also check the following [examples](examples/):
|
2015-09-26 09:31:53 +03:00
|
|
|
|
2015-10-30 10:01:44 +03:00
|
|
|
* **Basic Schema**: [Starwars example](examples/starwars)
|
|
|
|
* **Relay Schema**: [Starwars Relay example](examples/starwars_relay)
|
2015-09-26 09:31:53 +03:00
|
|
|
|
|
|
|
|
2015-09-24 12:11:50 +03:00
|
|
|
## Contributing
|
|
|
|
|
|
|
|
After cloning this repo, ensure dependencies are installed by running:
|
|
|
|
|
|
|
|
```sh
|
|
|
|
python setup.py install
|
|
|
|
```
|
|
|
|
|
|
|
|
After developing, the full test suite can be evaluated by running:
|
|
|
|
|
|
|
|
```sh
|
|
|
|
python setup.py test # Use --pytest-args="-v -s" for verbose mode
|
|
|
|
```
|
2016-11-15 06:38:45 +03:00
|
|
|
|
|
|
|
|
|
|
|
### Documentation
|
|
|
|
|
|
|
|
The documentation is generated using the excellent [Sphinx](http://www.sphinx-doc.org/) and a custom theme.
|
|
|
|
|
|
|
|
The documentation dependencies are installed by running:
|
|
|
|
|
|
|
|
```sh
|
|
|
|
cd docs
|
|
|
|
pip install -r requirements.txt
|
|
|
|
```
|
|
|
|
|
|
|
|
Then to produce a HTML version of the documentation:
|
|
|
|
|
|
|
|
```sh
|
|
|
|
make html
|
|
|
|
```
|