SchemaCompiler
Compiles a GraphQL schema IDL string into an executable GraphQLSchema using graphql-java's IDL tools. Primarily used for validating GraphQL operation documents against the schema during code generation.
Custom scalars that are not part of the built-in GraphQL specification scalars (String, Int, Float, Boolean, ID) are wired with pass-through coercing so the schema can be built without external scalar implementations.
Parameters
mappedScalars
Optional mapping of custom scalar names to their Kotlin type names. Reserved for future use; not currently consumed by the compiler.