blob: cc491093006a6450071162d47d1846ef2b857ccd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
import { gql } from 'react-apollo';
export const itemDetails = gql`
fragment itemDetails on Item {
id
title
price
fullPrice
description
image {
id
url
secret
}
}
`;
|