Files
takerofnotes-website/libs/shopify/fragments.js
2026-05-29 11:22:56 -04:00

20 lines
328 B
JavaScript

// 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
}
`