A function that when called will execute the next link in the link chain.
The current ApolloLink.Operation object for the request.
ApolloLink.Operation
const link = new ApolloLink((operation, forward) => { // process the request // Call `forward` to execute the next link in the chain return forward(operation);}); Copy
const link = new ApolloLink((operation, forward) => { // process the request // Call `forward` to execute the next link in the chain return forward(operation);});
A function that when called will execute the next link in the link chain.