summaryrefslogtreecommitdiffstats
path: root/frontend/enhancers/enhancers.js
blob: 525c720c9f899b6f55f973c7037f0cbc092513c5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
import { ALL_ITEMS_QUERY } from "../queries/index";
import { graphql } from "react-apollo";

export const itemEnhancer = graphql(ALL_ITEMS_QUERY, {
  name: "allItemsQuery",
  options({ page }) {
    return {
      variables: {
        skip: page * 3 - 3
      }
    };
  }
});