11# Relay Library for GraphQL Python
22
33This 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
55of a GraphQL server.
66
77* 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
1616to provide context for this library.
1717
1818An 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 ) .
2121
2222This 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
2424of a GraphQL server.
2525
2626An 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
3030repository. A good way to get started with this repository is to walk through
3131that documentation and the corresponding tests in this library together.
3232
33- ## Using Relay Library for GraphQL Python (graphqllib )
33+ ## Using Relay Library for GraphQL Python (graphql-core )
3434
3535Install Relay Library for GraphQL Python
3636
3737``` 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
3939pip install graphql-relay
4040```
4141
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 ) ,
4343the provided library functions can be used to simplify the creation of Relay
4444patterns.
4545
0 commit comments