Uses of Interface
graphql.TrivialDataFetcher
-
Packages that use TrivialDataFetcher Package Description graphql.introspection graphql.relay graphql.schema -
-
Uses of TrivialDataFetcher in graphql.introspection
Subinterfaces of TrivialDataFetcher in graphql.introspection Modifier and Type Interface Description interface
IntrospectionDataFetcher<T>
Special DataFetcher which is only used insideIntrospection
-
Uses of TrivialDataFetcher in graphql.relay
Classes in graphql.relay that implement TrivialDataFetcher Modifier and Type Class Description class
SimpleListConnection<T>
-
Uses of TrivialDataFetcher in graphql.schema
Subinterfaces of TrivialDataFetcher in graphql.schema Modifier and Type Interface Description interface
LightDataFetcher<T>
ALightDataFetcher
is a specialised version ofDataFetcher
that is passed more lightweight arguments when it is asked to fetch values.Classes in graphql.schema that implement TrivialDataFetcher Modifier and Type Class Description class
PropertyDataFetcher<T>
This is the default data fetcher used in graphql-java, and it will examine maps, records and POJO java beans for values that match the desired name, typically the field name, or it will use a provided function to obtain values.class
StaticDataFetcher
ADataFetcher
that always returns the same value
-