From a2db7c5dae36ac3c9b2f1d261a27d1efb0bacbb7 Mon Sep 17 00:00:00 2001 From: Jonathan Kim Date: Sun, 17 Jun 2018 11:24:59 +0100 Subject: [PATCH] Remove an unnecessary field --- docs/types/interfaces.rst | 4 ---- 1 file changed, 4 deletions(-) diff --git a/docs/types/interfaces.rst b/docs/types/interfaces.rst index 113edee5..a8d06b9a 100644 --- a/docs/types/interfaces.rst +++ b/docs/types/interfaces.rst @@ -15,7 +15,6 @@ character in the Star Wars trilogy: id = graphene.ID(required=True) name = graphene.String(required=True) friends = graphene.List(lambda: Character) - appears_in = graphene.List(Episode, required=True) Any ObjectType that implements ``Character`` will have these exact fields, with @@ -51,14 +50,12 @@ The full GraphQL schema defition will look like this: id: ID! name: String! friends: [Character] - appearsIn: [Episode]! } type Human implements Character { id: ID! name: String! friends: [Character] - appearsIn: [Episode]! starships: [Starship] homePlanet: String } @@ -67,7 +64,6 @@ The full GraphQL schema defition will look like this: id: ID! name: String! friends: [Character] - appearsIn: [Episode]! primaryFunction: String }