Package graphql.execution
Class FetchedValue
- java.lang.Object
-
- graphql.execution.FetchedValue
-
@PublicApi public class FetchedValue extends java.lang.Object
Note: This is returned byInstrumentationFieldCompleteParameters.getFetchedValue()
and therefore part of the public despite never used in a method signature.
-
-
Constructor Summary
Constructors Constructor Description FetchedValue(java.lang.Object fetchedValue, java.util.List<GraphQLError> errors, java.lang.Object localContext)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.util.List<GraphQLError>
getErrors()
java.lang.Object
getFetchedValue()
java.lang.Object
getLocalContext()
java.lang.String
toString()
-
-
-
Constructor Detail
-
FetchedValue
public FetchedValue(java.lang.Object fetchedValue, java.util.List<GraphQLError> errors, java.lang.Object localContext)
-
-
Method Detail
-
getFetchedValue
public java.lang.Object getFetchedValue()
-
getErrors
public java.util.List<GraphQLError> getErrors()
-
getLocalContext
public java.lang.Object getLocalContext()
-
toString
public java.lang.String toString()
- Overrides:
toString
in classjava.lang.Object
-
-