mirror of
https://github.com/vercel/commerce.git
synced 2025-07-23 04:36:49 +00:00
25 lines
572 B
TypeScript
25 lines
572 B
TypeScript
export const getFeatuedBlogQuery = /* GraphQL */ `
|
|
query GetFeaturedBlog($options: BlogListOptions) {
|
|
featuredBlogs( options: $options){
|
|
items {
|
|
id
|
|
isPublish
|
|
isFeatured
|
|
authorName
|
|
createdAt
|
|
authorAvatarAsset{
|
|
preview
|
|
}
|
|
featuredAsset {
|
|
preview
|
|
}
|
|
translations {
|
|
title
|
|
slug
|
|
description
|
|
content
|
|
}
|
|
}
|
|
}
|
|
}
|
|
` |