Skip to content

Commit d77162f

Browse files
authored
fix(resolver-map): Add small correction
1 parent 9b056f4 commit d77162f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

content/graphql/resolvers-map.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -269,7 +269,7 @@ getAuthor(
269269
) {}
270270
```
271271

272-
> info **Hint** Again, in the case of `firstName`, which is a GraphQL nullable field, it isn't necessary to add the non-value types of `null` or `undefined` to the type of this field. Just be aware, you'll need to type guard for these possible non-value types in your resolvers, because a GraphQL nullable field will allow those types to pass through to your resolver.
272+
> info **Hint** In the case of `firstName`, which is a GraphQL nullable field, it isn't necessary to add the non-value types of `null` or `undefined` to the type of this field. Just be aware, you'll need to type guard for these possible non-value types in your resolvers, because a GraphQL nullable field will allow those types to pass through to your resolver.
273273
274274
#### Dedicated arguments class
275275

0 commit comments

Comments
 (0)