Skip to content

Commit 29f7c8e

Browse files
committed
Add graphql and graphql-epoxy
1 parent 006493b commit 29f7c8e

File tree

1 file changed

+10
-1
lines changed

1 file changed

+10
-1
lines changed

README.md

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,16 @@ Otherwise, by default, the executor will use execute with no concurrency.
5656
Documentation is in the works but not available yet. See #14 for additional information.
5757

5858
## Pythonic GraphQL Library
59-
`graphql-core` provides a more low-level API for building a GraphQL API and schema. For a more refined and Pythonic interface to build graphql APIs, check out [`graphene`](https://github.com/graphql-python/graphene).
59+
For a more refined and Pythonic interface to build graphql APIs, check out
60+
* [`graphene`](https://github.com/graphql-python/graphene)
61+
- **Easy to use:** Graphene helps you use GraphQL in Python without effort.
62+
- **Relay:** Graphene has builtin support for Relay
63+
- **Django:** Automatic *Django model* mapping to Graphene Types. Check a fully working [Django](http://github.com/graphql-python/swapi-graphene) implementation
64+
* [`graphql-epoxy`](https://github.com/graphql-python/graphql-epoxy)
65+
- **Minimal Boilerplate**: You can create a GraphQL schema and execute it in less than 5 lines of code.
66+
- **Definition Ordering**: It doesn't matter. Define your objects in any order you want. Epoxy will take care of the rest.
67+
- **Quick**: Once you create your schema, epoxy doesn't get in the way. Your resolvers will be called directly by
68+
`graphql-core` with no additional indirection.
6069

6170
## Current Maintainer
6271
* [@jhgg](https://github.com/jhgg/)

0 commit comments

Comments
 (0)