mirror of
https://github.com/graphql-python/graphene.git
synced 2024-11-25 11:03:58 +03:00
Update UPGRADE-v1.0.md
Hoping to help out by fixing a few small grammatical mistakes. Thanks for the upgrade guide!
This commit is contained in:
parent
23e028fe72
commit
b5d15b635e
|
@ -97,7 +97,7 @@ schema = graphene.Schema(
|
||||||
|
|
||||||
## Interfaces
|
## Interfaces
|
||||||
|
|
||||||
For implementing an Interface in a ObjectType, you have to it onto `Meta.interfaces`.
|
For implementing an Interface in an ObjectType, you have to add it onto `Meta.interfaces`.
|
||||||
|
|
||||||
Like:
|
Like:
|
||||||
|
|
||||||
|
@ -142,7 +142,7 @@ class Query(ObjectType):
|
||||||
|
|
||||||
## Nodes
|
## Nodes
|
||||||
|
|
||||||
Apart of implementing as showed in the previous section, for use the node field you have to
|
Apart from implementing as shown in the previous section, to use the node field you have to
|
||||||
specify the node Type.
|
specify the node Type.
|
||||||
|
|
||||||
Example:
|
Example:
|
||||||
|
@ -155,16 +155,16 @@ class Query(ObjectType):
|
||||||
node = relay.Node.Field() # New way
|
node = relay.Node.Field() # New way
|
||||||
```
|
```
|
||||||
|
|
||||||
Also, if wanted to create an `ObjectType` that implements `Node`, you have to do it
|
Also, if you wanted to create an `ObjectType` that implements `Node`, you have to do it
|
||||||
explicity.
|
explicity.
|
||||||
|
|
||||||
|
|
||||||
## Django
|
## Django
|
||||||
|
|
||||||
The Django integration with Graphene now have an independent package: `graphene-django`.
|
The Django integration with Graphene now has an independent package: `graphene-django`.
|
||||||
For installing, you have to replace the old `graphene[django]` with `graphene-django`.
|
For installing, you have to replace the old `graphene[django]` with `graphene-django`.
|
||||||
|
|
||||||
* As the package is now independent, you have to import now from `graphene_django`.
|
* As the package is now independent, you now have to import from `graphene_django`.
|
||||||
* **DjangoNode no longer exists**, please use `relay.Node` instead:
|
* **DjangoNode no longer exists**, please use `relay.Node` instead:
|
||||||
|
|
||||||
```python
|
```python
|
||||||
|
@ -178,7 +178,7 @@ For installing, you have to replace the old `graphene[django]` with `graphene-dj
|
||||||
|
|
||||||
## SQLAlchemy
|
## SQLAlchemy
|
||||||
|
|
||||||
The SQLAlchemy integration with Graphene now have an independent package: `graphene-sqlalchemy`.
|
The SQLAlchemy integration with Graphene now has an independent package: `graphene-sqlalchemy`.
|
||||||
For installing, you have to replace the old `graphene[sqlalchemy]` with `graphene-sqlalchemy`.
|
For installing, you have to replace the old `graphene[sqlalchemy]` with `graphene-sqlalchemy`.
|
||||||
|
|
||||||
* As the package is now independent, you have to import now from `graphene_sqlalchemy`.
|
* As the package is now independent, you have to import now from `graphene_sqlalchemy`.
|
||||||
|
|
Loading…
Reference in New Issue
Block a user