All Downloads are FREE. Search and download functionalities are using the official Maven repository.

graphql.analysis.QueryVisitor Maven / Gradle / Ivy

There is a newer version: 230521-nf-execution
Show newest version
package graphql.analysis;

import graphql.PublicApi;

/**
 * User by {@link QueryTraversal} to visit the nodes of a Query.
 * 

* How this happens in detail (pre vs post-order for example) is defined by {@link QueryTraversal}. */ @PublicApi public interface QueryVisitor { void visitField(QueryVisitorFieldEnvironment QueryVisitorFieldEnvironment); void visitInlineFragment(QueryVisitorInlineFragmentEnvironment queryVisitorInlineFragmentEnvironment); void visitFragmentSpread(QueryVisitorFragmentSpreadEnvironment queryVisitorFragmentSpreadEnvironment); }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy