Files
commerce/framework/vendure/utils/queries/get-relevant-blogs.ts
2021-10-20 10:11:07 +07:00

26 lines
442 B
TypeScript

export const getRelevantBlogsQuery = /* GraphQL */ `
query relevantBlogs($productId: ID!){
relevantBlogs(productId:$productId){
items {
id
isPublish
isFeatured
authorName
createdAt
authorAvatarAsset{
preview
}
featuredAsset {
preview
}
translations {
title
slug
description
content
}
}
}
}
`