Files
commerce/framework/woocommerce/wp/queries/get-posts-query.ts.t
2021-09-26 17:09:41 +03:00

13 lines
175 B
Raku

export const getPageQuery = /* GraphQL */ `
query allPosts {
posts {
nodes {
id
title
date
}
}
}
`
export default getPageQuery