Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 7 additions & 2 deletions src/main/java/graphql/execution/FetchedValue.java
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,17 @@

import com.google.common.collect.ImmutableList;
import graphql.GraphQLError;
import graphql.Internal;
import graphql.PublicApi;
import graphql.execution.instrumentation.parameters.InstrumentationFieldCompleteParameters;

import java.util.List;
import java.util.function.Consumer;

@Internal
/**
* Note: This is returned by {@link InstrumentationFieldCompleteParameters#getFetchedValue()}
* and therefore part of the public despite never used in a method signature.
*/
@PublicApi
public class FetchedValue {
private final Object fetchedValue;
private final Object rawFetchedValue;
Expand Down