We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 00befde commit b8bf51bCopy full SHA for b8bf51b
README.md
@@ -94,7 +94,7 @@ class Product(ObjectType):
94
"""
95
Here we resolve the reference of the product entity referenced by its `upc` field.
96
97
- return User(upc=self.upc, name=f"product {self.upc}")
+ return Product(upc=self.upc, name=f"product {self.upc}")
98
99
class Query(ObjectType):
100
topProducts = List(Product, first=Argument(Int, default_value=5))
0 commit comments