Trym Nilsen
07/31/2024, 7:50 AMw: file://.../operations/adapter/<name>_ResponseAdapter.kt:46:79 '@Deprecated(...) val ...' is deprecated. Deprecation reason here.
Is is possible to configure that these warnings should be treated as errors rather than warnings? 🤔 (Or some earlier error if deprecated mutations/queries are used)bod
07/31/2024, 8:12 AMallWarningsAsErrors
Trym Nilsen
07/31/2024, 8:17 AMbod
07/31/2024, 8:21 AMfailOnWarnings.set(true)
which will fail the codegen whenever a warning is encountered (that includes using deprecated fields in operations)Trym Nilsen
07/31/2024, 8:23 AMStylianos Gakis
07/31/2024, 8:35 AMbod
07/31/2024, 8:37 AMStylianos Gakis
07/31/2024, 8:39 AM