food-grapqhl-client/src/queries.ts

15 lines
255 B
TypeScript
Raw Normal View History

2019-02-10 15:01:18 +00:00
import { gql } from 'graphql.macro';
import { graphql } from 'react-apollo';
export const GET_STORES = gql`
query getStores {
stores() {
id
name
}
}
`;
export const getStoresQuery = graphql(GET_STORES, {
name: 'storesData',
});