# Admin GraphQL API: new APIs for Pages, Articles, Blogs, and Comments now available in 2024-10 — Shopify developer changelog --- ## Admin GraphQL API: new APIs for Pages, Articles, Blogs, and Comments now available in 2024-10 As of version 2024-10 of the Admin GraphQL API, you can now read and modify Pages, Articles, Blogs, Comments. `Page`, `Article`, and `Blog` types have replaced the `OnlineStorePage`, `OnlineStoreArticle`, and `OnlineStoreBlog` types in the API. Pages: * You can now create new pages using [`pageCreate`](https://shopify.dev/docs/api/admin-graphql/2024-10/mutations/pageCreate), modify existing pages using [`pageUpdate`](https://shopify.dev/docs/api/admin-graphql/2024-10/mutations/pageUpdate), and delete pages using [`pageDelete`](https://shopify.dev/docs/api/admin-graphql/2024-10/mutations/pageDelete). * Pages can be queried using the new [`page`](https://shopify.dev/docs/api/admin-graphql/2024-10/queries/page) or [`pages`](https://shopify.dev/docs/api/admin-graphql/2024-10/queries/pages) queries. Articles: * You can now create new articles using [`articleCreate`](https://shopify.dev/docs/api/admin-graphql/2024-10/mutations/articleCreate), modify existing articles using [`articleUpdate`](https://shopify.dev/docs/api/admin-graphql/2024-10/mutations/articleUpdate), and delete articles using [`articleDelete`](https://shopify.dev/docs/api/admin-graphql/2024-10/mutations/articleDelete). * Articles can be queried using the new [`article`](https://shopify.dev/docs/api/admin-graphql/2024-10/queries/article) or [`articles`](https://shopify.dev/docs/api/admin-graphql/2024-10/queries/articles) queries. Blogs: * You can now create new blogs using [`blogCreate`](https://shopify.dev/docs/api/admin-graphql/2024-10/mutations/blogCreate), modify existing blogs using [`blogUpdate`](https://shopify.dev/docs/api/admin-graphql/2024-10/mutations/blogUpdate), and delete blogs using [`blogDelete`](https://shopify.dev/docs/api/admin-graphql/2024-10/mutations/blogDelete). * Blogs can be queried using the new [`blog`](https://shopify.dev/docs/api/admin-graphql/2024-10/queries/blog) or [`blogs`](https://shopify.dev/docs/api/admin-graphql/2024-10/queries/blogs) queries. Comments: * You can now modify existing comments using [`commentApprove`](https://shopify.dev/docs/api/admin-graphql/2024-10/mutations/commentApprove), [`commentSpam`](https://shopify.dev/docs/api/admin-graphql/2024-10/mutations/commentSpam), or [`commentNotSpam`](https://shopify.dev/docs/api/admin-graphql/2024-10/mutations/commentNotSpam). Comments can be deleted with [`commentDelete`](https://shopify.dev/docs/api/admin-graphql/2024-10/mutations/commentDelete). * Comments can be queried using the new [`comment`](https://shopify.dev/docs/api/admin-graphql/2024-10/queries/comment) or [`comments`](https://shopify.dev/docs/api/admin-graphql/2024-10/queries/comments) queries *Published: October 01, 2024* Tags: API, New Link: https://shopify.dev/changelog/admin-graphql-api-new-apis-for-pages-articles-blogs-and-comments-now-available-in-2024-10 ---