mirror of
https://github.com/vercel/commerce.git
synced 2025-06-17 12:41:21 +00:00
11 lines
145 B
TypeScript
11 lines
145 B
TypeScript
const imageFragment = /* GraphQL */ `
|
|
fragment image on Image {
|
|
url
|
|
altText
|
|
width
|
|
height
|
|
}
|
|
`;
|
|
|
|
export default imageFragment;
|