Skip to content

Commit 9092380

Browse files
authored
Fix typo
1 parent 19d3ba0 commit 9092380

File tree

1 file changed

+1
-1
lines changed
  • content/tools/schema-parser-options

1 file changed

+1
-1
lines changed

content/tools/schema-parser-options/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ Options:
1919
* `useDefaultGenericWrappers`: Defaults to `true`. Tells the parser whether or not to add it's own list of well-known generic wrappers, such as `Future` and `CompletableFuture`.
2020
* `allowUnimplementedResolvers`: Defaults to `false`. Allows a schema to be created even if not all GraphQL fields have resolvers. Intended only for development, it will log a warning to remind you to turn it off for production. Any unimplemented resolvers will throw errors when queried.
2121
* `objectMapperConfigurer`: Exposes the Jackson `ObjectMapper` that handles marshalling arguments in method resolvers. Every method resolver gets its own mapper, and the configurer can configure it differently based on the GraphQL field definition.
22-
* `preferGraphQLResolver`: In cases where you have a Resolver class and legacy class that conflict on type arguements, use the Resolver class instead of throwing an error.
22+
* `preferGraphQLResolver`: In cases where you have a Resolver class and legacy class that conflict on type arguments, use the Resolver class instead of throwing an error.
2323
Specifically this situation can occur when you have a graphql schema type `Foo` with a `bars` property and classes:
2424
```java
2525
// legacy class you can't change

0 commit comments

Comments
 (0)