From cdd4afb79af057424177dc6efdb0f66e344fd72b Mon Sep 17 00:00:00 2001 From: Syrus Akbary Date: Wed, 28 Sep 2016 13:58:39 -0700 Subject: [PATCH] Update objecttypes.rst --- docs/types/objecttypes.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/types/objecttypes.rst b/docs/types/objecttypes.rst index 73526018..887e86c9 100644 --- a/docs/types/objecttypes.rst +++ b/docs/types/objecttypes.rst @@ -121,7 +121,7 @@ Let's see an example: return self.name class Query(graphene.ObjectType): - ship = graphene.Field(ShipNode) + ship = graphene.Field(ShipType) def resolve_ship(self, context, args, info): return Ship(name='xwing')