Jilles van Gurp
06/07/2021, 10:27 AMcom.expediagroup.graphql.generator.exceptions.TypeNotSupportedException
during schema generation where apparently one of my functions returns Unit which is not allowed. The problem is it does not tell me where the error is. Is there a way to get more detailed errors? Once I know where the error is, I can fix it. It would be helpful to improve this as this seems to happen a lot to me. In this case, complete mystery where the error is.Dariusz Kuc
06/07/2021, 2:17 PMKType
(in your case Unit
) is outside supported packages. When we forget to set packages for custom types it should be fairly easy to spot. But yeah looks like it might be pretty hard to find when referencing any of the Kotlin built-in types.Jilles van Gurp
06/07/2021, 3:32 PM