Large schemas have the problem, that the generated code base it huge and is not able to being compiled anymore. We need to find a suitable way to reduce the size and the complexity of the generated code.
Here is a list of potential solutions:
- Instead of generics use runtime evaluation (like
Box<dyn Any>).
- Use crates instead of modules to be able to compile them in parallel
Large schemas have the problem, that the generated code base it huge and is not able to being compiled anymore. We need to find a suitable way to reduce the size and the complexity of the generated code.
Here is a list of potential solutions:
Box<dyn Any>).