// Misc fragments used throughout import { gql } from 'graphql-request' export const IMAGE_FRAGMENT = gql` fragment ImageFields on Image { url altText width height } ` export const PRICE_FRAGMENT = gql` fragment PriceFields on MoneyV2 { amount currencyCode } `