Skip to content

Commit

Permalink
Merge pull request #3703 from dandv/patch-1
Browse files Browse the repository at this point in the history
Pagination: fix typo
  • Loading branch information
hwillson authored Jul 19, 2018
2 parents 920ffe2 + 5d6bcee commit 01fb2af
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/source/features/pagination.md
Original file line number Diff line number Diff line change
Expand Up @@ -208,4 +208,4 @@ const FEED_QUERY = gql`
`;
```

This would result in the accumulated feed in every query or `fetchMore` being placed in the store under the `feed` key, which we could later use of imperative store updates. In this example, we also use the `@connection` directive's optional `filter` argument, which allows us to include some arguments of the query in the store key. In this case, we want to include the `type` query argument in the store key, which results in multiple store values that accumulate pages from each type of feed.
This would result in the accumulated feed in every query or `fetchMore` being placed in the store under the `feed` key, which we could later use for imperative store updates. In this example, we also use the `@connection` directive's optional `filter` argument, which allows us to include some arguments of the query in the store key. In this case, we want to include the `type` query argument in the store key, which results in multiple store values that accumulate pages from each type of feed.

0 comments on commit 01fb2af

Please sign in to comment.