graphql.execution.NonNullableValueCoercedAsNullException Maven / Gradle / Ivy
package graphql.execution;
import graphql.ErrorType;
import graphql.GraphQLError;
import graphql.GraphQLException;
import graphql.PublicApi;
import graphql.language.SourceLocation;
import graphql.language.VariableDefinition;
import graphql.schema.GraphQLArgument;
import graphql.schema.GraphQLInputObjectField;
import graphql.schema.GraphQLType;
import graphql.schema.GraphQLTypeUtil;
import java.util.Collections;
import java.util.List;
import static java.lang.String.format;
/**
* This is thrown if a non nullable value is coerced to a null value
*/
@PublicApi
public class NonNullableValueCoercedAsNullException extends GraphQLException implements GraphQLError {
private List sourceLocations;
private List
© 2015 - 2024 Weber Informatics LLC | Privacy Policy