You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This method is protected so if you override the `SchemaGenerator` used you can call this method to add types that have a specific annotation.
15
31
You can see how this is used in `graphql-kotlin-federation` as [an example](https://github.com/ExpediaGroup/graphql-kotlin/blob/master/graphql-kotlin-federation/src/main/kotlin/com/expediagroup/graphql/federation/FederatedSchemaGenerator.kt).
16
-
17
-
### `SchemaGenerator::generateAdditionalTypes`
18
-
19
-
This method is called by `SchemaGenerator::get` after all the queries, mutations, and subscriptions have been generated and it is going to add all the types saved in an internal set that were not generated by reflection.
20
-
To change the behaviour, you can update the set and then call the super method with the new value.
0 commit comments