David Glasser
11/18/2020, 7:37 PMShane Myrick
11/18/2020, 7:41 PMpackages
config must include every package that has your schema types. If we are building your schema and we come across a type that is used as an argument or return type, and it is not in the packages, we will throw an error.
This is because we need to use reflection to scan the class info when building the schema and the packages
config limits us from having to scan your entire app and classpath for all possible classes.packages
will be included in the schema, it is only the types that are used and defined through the queries, mutations, and subscriptions