Skip to content

Commit a682ef8

Browse files
committed
Updated READMES
1 parent 6fe2750 commit a682ef8

File tree

2 files changed

+22
-12
lines changed

2 files changed

+22
-12
lines changed

README.md

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,14 @@
22

33

44
Graphene is a Python library for building GraphQL schemas/types fast and easily.
5-
* **Easy to use:** It maps the models/fields to internal GraphQL objects without effort.
5+
* **Easy to use:** Graphene helps you use GraphQL in Python without effort.
66
* **Relay:** Graphene has builtin support for Relay
77
* **Django:** Automatic *Django model* mapping to Graphene Types. *See an [example Django](http://github.com/graphql-python/swapi-graphene) implementation*
88

99

10+
*But, what is supported in this Python version?* **Everything**: Interfaces, ObjectTypes, Mutations and Relay (Nodes, Connections and Mutations).
11+
12+
1013
## Installation
1114

1215
For instaling graphene, just run this command in your shell
@@ -49,10 +52,11 @@ query = '''
4952
result = schema.execute(query)
5053
```
5154

52-
If you want to learn even more, you can also check the following examples:
55+
If you want to learn even more, you can also check the following [examples](examples/):
5356

54-
* Relay Schema: [Starwars Relay example](examples/starwars_relay)
55-
* Django: [Starwars Django example](examples/starwars_django)
57+
* **Basic Schema**: [Starwars example](examples/starwars)
58+
* **Relay Schema**: [Starwars Relay example](examples/starwars_relay)
59+
* **Django model mapping**: [Starwars Django example](examples/starwars_django)
5660

5761

5862
## Contributing

README.rst

Lines changed: 14 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,16 @@
22
=========================================================================================================
33

44
Graphene is a Python library for building GraphQL schemas/types fast and
5-
easily. \* **Easy to use:** It maps the models/fields to internal
6-
GraphQL objects without effort. \* **Relay:** Graphene has builtin
7-
support for Relay \* **Django:** Automatic *Django model* mapping to
8-
Graphene Types. *See an `example
9-
Django <http://github.com/graphql-python/swapi-graphene>`__
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>`__
109
implementation*
1110

11+
*But, what is supported in this Python version?* **Everything**:
12+
Interfaces, ObjectTypes, Mutations and Relay (Nodes, Connections and
13+
Mutations).
14+
1215
Installation
1316
------------
1417

@@ -53,10 +56,13 @@ Then Querying ``graphene.Schema`` is as simple as:
5356
result = schema.execute(query)
5457
5558
If you want to learn even more, you can also check the following
56-
examples:
59+
`examples <examples/>`__:
5760

58-
- Relay Schema: `Starwars Relay example <examples/starwars_relay>`__
59-
- Django: `Starwars Django example <examples/starwars_django>`__
61+
- **Basic Schema**: `Starwars example <examples/starwars>`__
62+
- **Relay Schema**: `Starwars Relay
63+
example <examples/starwars_relay>`__
64+
- **Django model mapping**: `Starwars Django
65+
example <examples/starwars_django>`__
6066

6167
Contributing
6268
------------

0 commit comments

Comments
 (0)