File tree Expand file tree Collapse file tree 1 file changed +0
-4
lines changed Expand file tree Collapse file tree 1 file changed +0
-4
lines changed Original file line number Diff line number Diff line change @@ -15,7 +15,6 @@ character in the Star Wars trilogy:
15
15
id = graphene.ID(required = True )
16
16
name = graphene.String(required = True )
17
17
friends = graphene.List(lambda : Character)
18
- appears_in = graphene.List(Episode, required = True )
19
18
20
19
21
20
Any ObjectType that implements ``Character `` will have these exact fields, with
@@ -51,14 +50,12 @@ The full GraphQL schema defition will look like this:
51
50
id: ID!
52
51
name: String!
53
52
friends: [Character]
54
- appearsIn: [Episode]!
55
53
}
56
54
57
55
type Human implements Character {
58
56
id: ID!
59
57
name: String!
60
58
friends: [Character]
61
- appearsIn: [Episode]!
62
59
starships: [Starship]
63
60
homePlanet: String
64
61
}
@@ -67,7 +64,6 @@ The full GraphQL schema defition will look like this:
67
64
id: ID!
68
65
name: String!
69
66
friends: [Character]
70
- appearsIn: [Episode]!
71
67
primaryFunction: String
72
68
}
73
69
You can’t perform that action at this time.
0 commit comments