graphene/README.md

71 lines
2.2 KiB
Markdown
Raw Normal View History

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
Graphene is a Python library for building GraphQL schemas/types fast and easily.
* **Easy to use:** It maps the models/fields to internal GraphQL objects without effort.
* **Relay:** Graphene has builtin support for Relay
2015-10-27 09:54:51 +03:00
* **Django:** Automatic *Django model* mapping to Graphene Types. *See an [example Django](http://github.com/graphql-python/swapi-graphene) implementation*
2015-09-24 12:11:50 +03:00
## Installation
For instaling graphene, just run this command in your shell
```bash
pip install graphene
2015-10-28 09:57:25 +03:00
# Or in case of need Django model support
pip install graphene[django]
```
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):
hello = graphene.StringField(description='A typical hello world')
ping = graphene.StringField(description='Ping someone',
to=graphene.Argument(graphene.String))
2015-09-24 12:17:56 +03:00
2015-10-27 09:54:51 +03:00
def resolve_hello(self, args, info):
return 'World'
2015-09-24 12:17:56 +03:00
2015-10-27 09:54:51 +03:00
def resolve_ping(self, args, info):
return 'Pinging {}'.format(args.get('to'))
2015-09-24 12:17:56 +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
ping(to:'peter')
2015-09-24 12:17:56 +03:00
}
'''
result = schema.execute(query)
2015-09-24 12:17:56 +03:00
```
2015-10-27 09:54:51 +03:00
If you want to learn even more, you can also check the following examples:
2015-09-26 09:31:53 +03:00
* Relay Schema: [Starwars Relay example](examples/starwars_relay)
* Django: [Starwars Django example](examples/starwars_django)
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
```