mirror of
https://github.com/vercel/commerce.git
synced 2025-07-22 20:26:49 +00:00
12 lines
292 B
TypeScript
12 lines
292 B
TypeScript
export const getAllBlogPathsQuery = /* GraphQL */ `
|
|
query getAllBlogPaths($excludeBlogIds: [ID]! = [],$options:BlogListOptions){
|
|
blogs(excludeBlogIds: $excludeBlogIds,options: $options){
|
|
items{
|
|
translations {
|
|
slug
|
|
}
|
|
}
|
|
}
|
|
}
|
|
`
|