always Generate Types Matching
A list of Regex patterns for input/scalar/enum types that should be generated whether they are used by queries/fragments in this module. When using multiple modules, Apollo Kotlin will generate all the types by default in the root module because the root module doesn't know what types are going to be used by dependent modules. This can be prohibitive in terms of compilation speed for large projects. If that's the case, opt-in the types that are used by multiple dependent modules here. You don't need to add types that are used by a single dependent module.
This is currently experimental and this API might change in the future.
Default value: if (generateApolloMetadata) listOf(".*") else listOf()