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

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