-
public interface ExecutionContextGraphQL execution context to support partial results.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description booleanhasPartialResultsException()Whether an exception was set on this context.ThrowablepartialResultsException()Retrieve partial resultsThrowable.voidpartialResultsException(Throwable throwable)Add a partial resultsThrowable.
-
-
-
Method Detail
-
partialResultsException
void partialResultsException(Throwable throwable)
Add a partial resultsThrowable.- Parameters:
throwable-Throwable
-
partialResultsException
Throwable partialResultsException()
Retrieve partial resultsThrowable.- Returns:
- the
Throwable
-
hasPartialResultsException
boolean hasPartialResultsException()
Whether an exception was set on this context.- Returns:
- true if there was a partial results exception
-
-