food-grapqhl-client/src/queries.ts

6 lines
164 B
TypeScript
Raw Normal View History

2019-02-10 15:01:18 +00:00
import { graphql } from 'react-apollo';
2019-02-10 15:46:49 +00:00
import { getStores } from './queries.graphql';
2019-02-10 15:01:18 +00:00
2019-02-10 15:46:49 +00:00
export const getStoresQuery = graphql(getStores, {
name: 'storesData',
});