Uses of Interface
graphql.execution.instrumentation.fieldvalidation.FieldValidation
-
Packages that use FieldValidation Package Description graphql.execution.instrumentation.fieldvalidation -
-
Uses of FieldValidation in graphql.execution.instrumentation.fieldvalidation
Classes in graphql.execution.instrumentation.fieldvalidation that implement FieldValidation Modifier and Type Class Description class
SimpleFieldValidation
This very simple field validation will run the supplied function for a given field path and if it returns an error it will be added to the list of problems.Fields in graphql.execution.instrumentation.fieldvalidation declared as FieldValidation Modifier and Type Field Description private FieldValidation
FieldValidationInstrumentation. fieldValidation
Methods in graphql.execution.instrumentation.fieldvalidation with parameters of type FieldValidation Modifier and Type Method Description (package private) static java.util.List<GraphQLError>
FieldValidationSupport. validateFieldsAndArguments(FieldValidation fieldValidation, ExecutionContext executionContext)
Constructors in graphql.execution.instrumentation.fieldvalidation with parameters of type FieldValidation Constructor Description FieldValidationInstrumentation(FieldValidation fieldValidation)
Your field validation will be called before query execution
-