Skip to content

Commit

Permalink
fix: fetchMore should accept context (#5147)
Browse files Browse the repository at this point in the history
  • Loading branch information
koenpunt authored and hwillson committed Sep 4, 2019
1 parent 36aa292 commit 7a2067e
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions packages/apollo-client/src/core/watchQueryOptions.ts
Original file line number Diff line number Diff line change
Expand Up @@ -121,6 +121,7 @@ export interface WatchQueryOptions<TVariables = OperationVariables>
export interface FetchMoreQueryOptions<TVariables, K extends keyof TVariables> {
query?: DocumentNode;
variables?: Pick<TVariables, K>;
context?: any;
}

export type UpdateQueryFn<
Expand Down

0 comments on commit 7a2067e

Please sign in to comment.