Skip to content

Commit a2db7c5

Browse files
committed
Remove an unnecessary field
1 parent 3f6c3a7 commit a2db7c5

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

docs/types/interfaces.rst

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@ character in the Star Wars trilogy:
1515
id = graphene.ID(required=True)
1616
name = graphene.String(required=True)
1717
friends = graphene.List(lambda: Character)
18-
appears_in = graphene.List(Episode, required=True)
1918
2019
2120
Any ObjectType that implements ``Character`` will have these exact fields, with
@@ -51,14 +50,12 @@ The full GraphQL schema defition will look like this:
5150
id: ID!
5251
name: String!
5352
friends: [Character]
54-
appearsIn: [Episode]!
5553
}
5654
5755
type Human implements Character {
5856
id: ID!
5957
name: String!
6058
friends: [Character]
61-
appearsIn: [Episode]!
6259
starships: [Starship]
6360
homePlanet: String
6461
}
@@ -67,7 +64,6 @@ The full GraphQL schema defition will look like this:
6764
id: ID!
6865
name: String!
6966
friends: [Character]
70-
appearsIn: [Episode]!
7167
primaryFunction: String
7268
}
7369

0 commit comments

Comments
 (0)