Skip to content

Commit c4a7f2d

Browse files
committed
Fix accidental typo
1 parent 9827175 commit c4a7f2d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/kotlin/org/neo4j/graphql/handler/relation/DeleteRelationHandler.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ class DeleteRelationHandler private constructor(
2121
return
2222
}
2323
type.fieldDefinitions
24-
.filterg { canHandleField(it) }
24+
.filter { canHandleField(it) }
2525
.mapNotNull { targetField ->
2626
buildFieldDefinition(type, targetField, true)
2727
?.let { builder -> buildingEnv.addOperation(MUTATION, builder.build()) }

0 commit comments

Comments
 (0)