summaryrefslogtreecommitdiffstats
path: root/frontend/queries/fragments.js
blob: 74948d39b910ff04818d95b5a1f5a75cd7b5007a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
import gql from 'graphql-tag';

export const itemDetails = gql`
  fragment itemDetails on Item {
    id
    title
    price
    description
    image
    largeImage
  }
`;