mirror of
https://github.com/vercel/commerce.git
synced 2025-05-22 01:16:58 +00:00
30 lines
483 B
TypeScript
30 lines
483 B
TypeScript
export const ProductConnection = /* GraphQL */ `
|
|
fragment ProductConnection on ProductCountableConnection {
|
|
pageInfo {
|
|
hasNextPage
|
|
hasPreviousPage
|
|
}
|
|
edges {
|
|
node {
|
|
id
|
|
name
|
|
description
|
|
slug
|
|
pricing {
|
|
priceRange {
|
|
start {
|
|
net {
|
|
amount
|
|
}
|
|
}
|
|
}
|
|
}
|
|
media {
|
|
url
|
|
alt
|
|
}
|
|
}
|
|
}
|
|
}
|
|
`
|