From 9ea57ecc5f6202f52a67925bcc6dfa86850ba7e0 Mon Sep 17 00:00:00 2001 From: Syrus Akbary Date: Fri, 30 Oct 2015 13:40:36 -0700 Subject: [PATCH] Update README.rst --- README.md | 7 ++++--- README.rst | 16 ++++++++++------ 2 files changed, 14 insertions(+), 9 deletions(-) diff --git a/README.md b/README.md index 1bcc9a29..27fd62f0 100644 --- a/README.md +++ b/README.md @@ -2,9 +2,10 @@ Graphene is a Python library for building GraphQL schemas/types fast and easily. -* **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. *See an [example Django](http://github.com/graphql-python/swapi-graphene) implementation* + +- **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 *But, what is supported in this Python version?* **Everything**: Interfaces, ObjectTypes, Mutations and Relay (Nodes, Connections and Mutations). diff --git a/README.rst b/README.rst index cef04124..45706105 100644 --- a/README.rst +++ b/README.rst @@ -2,11 +2,15 @@ ========================================================================================================= Graphene is a Python library for building GraphQL schemas/types fast and -easily. \* **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. *See an -`example Django `__ -implementation* +easily. + +- **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 `__ + implementation *But, what is supported in this Python version?* **Everything**: Interfaces, ObjectTypes, Mutations and Relay (Nodes, Connections and @@ -50,7 +54,7 @@ Then Querying ``graphene.Schema`` is as simple as: query = ''' query SayHello { hello - ping(to:'peter') + ping(to:"peter") } ''' result = schema.execute(query)