Skip to content
This repository was archived by the owner on Feb 27, 2023. It is now read-only.

Commit 5771abb

Browse files
committed
fix merge errors
1 parent 687644c commit 5771abb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/graphql/execution/defer/DeferredErrorSupport.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ public class DeferredErrorSupport {
1717
private final List<GraphQLError> errors = new CopyOnWriteArrayList<>();
1818

1919
public void onFetchingException(ExecutionStrategyParameters parameters, Throwable e) {
20-
ExceptionWhileDataFetching error = new ExceptionWhileDataFetching(parameters.path(), e, parameters.field().get(0).getSourceLocation());
20+
ExceptionWhileDataFetching error = new ExceptionWhileDataFetching(parameters.getPath(), e, parameters.getField().get(0).getSourceLocation());
2121
onError(error);
2222
}
2323

0 commit comments

Comments
 (0)