Skip to content

Commit 9ea57ec

Browse files
committed
Update README.rst
1 parent 646c716 commit 9ea57ec

File tree

2 files changed

+14
-9
lines changed

2 files changed

+14
-9
lines changed

README.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,10 @@
22

33

44
Graphene is a Python library for building GraphQL schemas/types fast and easily.
5-
* **Easy to use:** Graphene helps you use GraphQL in Python without effort.
6-
* **Relay:** Graphene has builtin support for Relay
7-
* **Django:** Automatic *Django model* mapping to Graphene Types. *See an [example Django](http://github.com/graphql-python/swapi-graphene) implementation*
5+
6+
- **Easy to use:** Graphene helps you use GraphQL in Python without effort.
7+
- **Relay:** Graphene has builtin support for Relay
8+
- **Django:** Automatic *Django model* mapping to Graphene Types. Check a fully working [Django](http://github.com/graphql-python/swapi-graphene) implementation
89

910

1011
*But, what is supported in this Python version?* **Everything**: Interfaces, ObjectTypes, Mutations and Relay (Nodes, Connections and Mutations).

README.rst

Lines changed: 10 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,15 @@
22
=========================================================================================================
33

44
Graphene is a Python library for building GraphQL schemas/types fast and
5-
easily. \* **Easy to use:** Graphene helps you use GraphQL in Python
6-
without effort. \* **Relay:** Graphene has builtin support for Relay \*
7-
**Django:** Automatic *Django model* mapping to Graphene Types. *See an
8-
`example Django <http://github.com/graphql-python/swapi-graphene>`__
9-
implementation*
5+
easily.
6+
7+
- **Easy to use:** Graphene helps you use GraphQL in Python without
8+
effort.
9+
- **Relay:** Graphene has builtin support for Relay
10+
- **Django:** Automatic *Django model* mapping to Graphene Types. Check
11+
a fully working
12+
`Django <http://github.com/graphql-python/swapi-graphene>`__
13+
implementation
1014

1115
*But, what is supported in this Python version?* **Everything**:
1216
Interfaces, ObjectTypes, Mutations and Relay (Nodes, Connections and
@@ -50,7 +54,7 @@ Then Querying ``graphene.Schema`` is as simple as:
5054
query = '''
5155
query SayHello {
5256
hello
53-
ping(to:'peter')
57+
ping(to:"peter")
5458
}
5559
'''
5660
result = schema.execute(query)

0 commit comments

Comments
 (0)