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

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