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 ed23db4 commit 4d794cbCopy full SHA for 4d794cb
src/main/java/graphql/execution/ExecutionContext.java
@@ -173,6 +173,11 @@ public ValueUnboxer getValueUnboxer() {
173
return valueUnboxer;
174
}
175
176
+ /**
177
+ * @return true if the current operation should propagate errors in non-null positions
178
+ * Propagating errors is the default. Error aware clients may opt in returning null in non-null positions
179
+ * by using the `@errorHandling` directive.
180
+ */
181
@ExperimentalApi
182
public boolean propagateErrors() { return propagateErrors; }
183
0 commit comments