@@ -97,7 +97,7 @@ schema = graphene.Schema(
97
97
98
98
## Interfaces
99
99
100
- For implementing an Interface in a ObjectType, you have to it onto ` Meta.interfaces ` .
100
+ For implementing an Interface in an ObjectType, you have to add it onto ` Meta.interfaces ` .
101
101
102
102
Like:
103
103
@@ -142,7 +142,7 @@ class Query(ObjectType):
142
142
143
143
## Nodes
144
144
145
- Apart of implementing as showed in the previous section, for use the node field you have to
145
+ Apart from implementing as shown in the previous section, to use the node field you have to
146
146
specify the node Type.
147
147
148
148
Example:
@@ -155,16 +155,16 @@ class Query(ObjectType):
155
155
node = relay.Node.Field() # New way
156
156
```
157
157
158
- Also, if wanted to create an ` ObjectType ` that implements ` Node ` , you have to do it
158
+ Also, if you wanted to create an ` ObjectType ` that implements ` Node ` , you have to do it
159
159
explicity.
160
160
161
161
162
162
## Django
163
163
164
- The Django integration with Graphene now have an independent package: ` graphene-django ` .
164
+ The Django integration with Graphene now has an independent package: ` graphene-django ` .
165
165
For installing, you have to replace the old ` graphene[django] ` with ` graphene-django ` .
166
166
167
- * As the package is now independent, you have to import now from ` graphene_django ` .
167
+ * As the package is now independent, you now have to import from ` graphene_django ` .
168
168
* ** DjangoNode no longer exists** , please use ` relay.Node ` instead:
169
169
170
170
``` python
@@ -178,7 +178,7 @@ For installing, you have to replace the old `graphene[django]` with `graphene-dj
178
178
179
179
## SQLAlchemy
180
180
181
- The SQLAlchemy integration with Graphene now have an independent package: ` graphene-sqlalchemy ` .
181
+ The SQLAlchemy integration with Graphene now has an independent package: ` graphene-sqlalchemy ` .
182
182
For installing, you have to replace the old ` graphene[sqlalchemy] ` with ` graphene-sqlalchemy ` .
183
183
184
184
* As the package is now independent, you have to import now from ` graphene_sqlalchemy ` .
0 commit comments