We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0d69115 commit 547fc4cCopy full SHA for 547fc4c
libraries/apollo-compiler/src/main/kotlin/com/apollographql/apollo/compiler/ApolloCompiler.kt
@@ -627,7 +627,7 @@ internal fun List<Issue>.group(
627
is DeprecatedUsage -> if (warnOnDeprecatedUsages) Severity.Warning else Severity.None
628
is DifferentShape -> if (fieldsOnDisjointTypesMustMerge) Severity.Error else Severity.Warning
629
is UnusedVariable -> Severity.Warning
630
- is UnusedFragment -> Severity.None
+ is UnusedFragment -> Severity.Warning
631
is IncompatibleDefinition -> Severity.Warning // This should probably be an error
632
is DirectiveRedefinition -> Severity.Warning
633
else -> Severity.Error
0 commit comments