Package com.apollographql.apollo
Interface ApolloQueryCall.Factory
-
- All Known Implementing Classes:
ApolloClient
- Enclosing interface:
- ApolloQueryCall<T>
public static interface ApolloQueryCall.FactoryFactory for creatingApolloQueryCallcalls.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description <D extends com.apollographql.apollo.api.Operation.Data,T,V extends com.apollographql.apollo.api.Operation.Variables>
ApolloQueryCall<T>query(com.apollographql.apollo.api.Query<D,T,V> query)Creates and prepares a newApolloQueryCallcall.
-
-
-
Method Detail
-
query
<D extends com.apollographql.apollo.api.Operation.Data,T,V extends com.apollographql.apollo.api.Operation.Variables> ApolloQueryCall<T> query(@NotNull com.apollographql.apollo.api.Query<D,T,V> query)
Creates and prepares a newApolloQueryCallcall.- Parameters:
query- the operation which needs to be performed- Returns:
- prepared
ApolloQueryCallcall to be executed at some point in the future
-
-