We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 40f07cf commit 9052403Copy full SHA for 9052403
tests/starwars/schema.py
@@ -176,7 +176,7 @@
176
"provided, returns the hero of that particular episode.",
177
)
178
},
179
- resolve=lambda _souce, _info, episode=None: get_hero_async(episode),
+ resolve=lambda _source, _info, episode=None: get_hero_async(episode),
180
),
181
"human": GraphQLField(
182
human_type,
@@ -186,7 +186,7 @@
186
type_=GraphQLNonNull(GraphQLString),
187
188
189
- resolve=lambda _souce, _info, id: get_human(id),
+ resolve=lambda _source, _info, id: get_human(id),
190
191
"droid": GraphQLField(
192
droid_type,
0 commit comments