mirror of
https://github.com/vercel/commerce.git
synced 2025-07-23 04:36:49 +00:00
26 lines
483 B
TypeScript
26 lines
483 B
TypeScript
export const getBlogDetailQuery = /* GraphQL */ `
|
|
query getBlog($slug: String ){
|
|
blog(slug: $slug){
|
|
id
|
|
isPublish
|
|
isFeatured
|
|
authorName
|
|
createdAt
|
|
authorAvatarAsset{
|
|
preview
|
|
}
|
|
featuredAsset {
|
|
preview
|
|
}
|
|
translations {
|
|
title
|
|
slug
|
|
description
|
|
content
|
|
}
|
|
relevantProducts{
|
|
id
|
|
}
|
|
}
|
|
}
|
|
` |