Files
commerce/framework/woocommerce/wp/queries/get-posts-query.ts.t
2021-09-18 00:52:28 +03:00

13 lines
175 B
Raku

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