graphene/README.md

88 lines
2.8 KiB
Markdown
Raw Normal View History

2016-09-09 07:30:30 +03:00
You are in the `next` unreleased version of Graphene (`1.0.dev`).
Please read [UPGRADE-v1.0.md](/UPGRADE-v1.0.md) to learn how to upgrade.
---
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
- **Django:** Automatic *Django model* mapping to Graphene Types. Check a fully working [Django](http://github.com/graphql-python/swapi-graphene) implementation
2015-09-24 12:11:50 +03:00
Graphene also supports *SQLAlchemy*!
2015-09-24 12:11:50 +03:00
2015-11-19 19:37:15 +03:00
*What is supported in this Python version?* **Everything**: Interfaces, ObjectTypes, Scalars, Unions and Relay (Nodes, Connections), in addition to queries, mutations and subscriptions.
2015-10-30 10:01:44 +03:00
2015-11-30 11:25:18 +03:00
**NEW**!: [Try graphene online](http://graphene-python.org/playground/)
2015-10-30 10:01:44 +03:00
## Installation
For instaling graphene, just run this command in your shell
```bash
pip install "graphene>=1.0.dev"
# In case of need Django model support
pip install "graphene-django>=1.0.dev"
# Or in case of need SQLAlchemy support
pip install "graphene-sqlalchemy>=1.0.dev"
```
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):
hello = graphene.String(description='A typical hello world')
ping = graphene.String(description='Ping someone',
to=graphene.String())
2015-09-24 12:17:56 +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
def resolve_ping(self, args, context, info):
2015-10-27 09:54:51 +03:00
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
2015-10-30 23:40:19 +03:00
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-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
```