Files
commerce/framework/vendure/utils/queries/get-all-blog-paths-query.ts
2021-10-20 10:11:07 +07:00

12 lines
292 B
TypeScript

export const getAllBlogPathsQuery = /* GraphQL */ `
query getAllBlogPaths($excludeBlogIds: [ID]! = [],$options:BlogListOptions){
blogs(excludeBlogIds: $excludeBlogIds,options: $options){
items{
translations {
slug
}
}
}
}
`