StorefrontAPIを利用し、販売チャネル>ブログ記事 で作成した記事を取得しようと試みております。
ドキュメントを参照し、
https://shopify.dev/docs/api/storefront/2023-01/queries/blogs
GraphQLで以下のように問い合わせておりますが、
{ blogs(last:1) { nodes { id } } }
APIからはエラーが返るようです。
{
"errors": [
{
"message": "Internal error. Looks like something went wrong on our end.\nRequest ID: 87a209f6-730f-4b9a-845c-925973529c10 (include this in support requests).",
"extensions": {
"code": "INTERNAL_SERVER_ERROR",
"requestId": "87a209f6-730f-4b9a-845c-925973529c10"
}
}
]
}
ストアフロントAPIの GraphiQL explorerで同様の問い合わせを行っても同様の「something went wrong on our end.」が返るようでした。
https://shopify.dev/docs/custom-storefronts/building-with-the-storefront-api/api-exploration/graphiql-storefront-api
GraphQL自体に不慣れなため何か不備があるのではと思いますが、この症状に関してなにかご存知の方がいればご指摘いただけないでしょうか。
よろしくお願いいたします。