You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/main/kotlin/com/coxautodev/graphql/tools/SchemaParser.kt
+4-4Lines changed: 4 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -163,7 +163,7 @@ class SchemaParser internal constructor(scanResult: ScannedSchemaObjects, privat
163
163
?:throwSchemaError("No resolver method found for object type '${objectDefinition.name}' and field '${fieldDefinition.name}', this is most likely a bug with graphql-java-tools")
164
164
)
165
165
166
-
val wiredField =directiveGenerator.onField(field.build(), DirectiveBehavior.Params(runtimeWiring))
166
+
val wiredField = field.build()
167
167
GraphQLFieldDefinition.Builder(wiredField)
168
168
.clearArguments()
169
169
.arguments(wiredField.arguments)
@@ -204,7 +204,7 @@ class SchemaParser internal constructor(scanResult: ScannedSchemaObjects, privat
0 commit comments