1
1
# Relay Library for GraphQL Python
2
2
3
3
This is a library to allow the easy creation of Relay-compliant servers using
4
- the [ GraphQL Python] ( https://github.com/dittos/graphqllib ) reference implementation
4
+ the [ GraphQL Python] ( https://github.com/graphql-python/graphql-core ) reference implementation
5
5
of a GraphQL server.
6
6
7
7
* Note: The code is a __ exact__ port of the original [ graphql-relay js implementation] ( https://github.com/graphql/graphql-relay-js )
@@ -16,11 +16,11 @@ A basic understanding of GraphQL and of the GraphQL Python implementation is nee
16
16
to provide context for this library.
17
17
18
18
An overview of GraphQL in general is available in the
19
- [ README] ( https://github.com/dittos/graphqllib /blob/master/README.md ) for the
20
- [ Specification for GraphQL] ( https://github.com/dittos/graphqllib ) .
19
+ [ README] ( https://github.com/graphql-python/graphql-core /blob/master/README.md ) for the
20
+ [ Specification for GraphQL] ( https://github.com/graphql-python/graphql-core ) .
21
21
22
22
This library is designed to work with the
23
- the [ GraphQL Python] ( https://github.com/dittos/graphqllib ) reference implementation
23
+ the [ GraphQL Python] ( https://github.com/graphql-python/graphql-core ) reference implementation
24
24
of a GraphQL server.
25
25
26
26
An overview of the functionality that a Relay-compliant GraphQL server should
@@ -30,16 +30,16 @@ describes a simple set of examples that exist as [tests](tests) in this
30
30
repository. A good way to get started with this repository is to walk through
31
31
that documentation and the corresponding tests in this library together.
32
32
33
- ## Using Relay Library for GraphQL Python (graphqllib )
33
+ ## Using Relay Library for GraphQL Python (graphql-core )
34
34
35
35
Install Relay Library for GraphQL Python
36
36
37
37
``` sh
38
- pip install git+https://github.com/dittos/graphqllib.git # Last version of graphqllib
38
+ pip install graphql-core --pre # Last version of graphql-core
39
39
pip install graphql-relay
40
40
```
41
41
42
- When building a schema for [ GraphQL] ( https://github.com/dittos/graphqllib ) ,
42
+ When building a schema for [ GraphQL] ( https://github.com/graphql-python/graphql-core ) ,
43
43
the provided library functions can be used to simplify the creation of Relay
44
44
patterns.
45
45
0 commit comments