What’s the use of Moshi’s Kotlin codegen?

This is sort of three questions Why is code gen useful Code gen is useful as a compile-time alternative to the reflective moshi-kotlin. Both of them are useful because they natively understand Kotlin code and its language features. Without them, Moshi would not be able to understand Kotlin nullability, default values, and much more. There … Read more

Unable to find any GraphQL type definitions for the following pointers: src/**/*.graphql

The file your shared is your schema (as generated by your server), but it seems that you haven’t created any queries or mutations on top of it. This would be a reason why the codegen is not working properly. I suggest thay you create a new file with a simple query, such as: get-users.query.graphql query … Read more

tech