Storefront APIでブログ記事を取得したい

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自体に不慣れなため何か不備があるのではと思いますが、この症状に関してなにかご存知の方がいればご指摘いただけないでしょうか。

よろしくお願いいたします。

例えば以下は如何でしょうか。

edges が抜けていたり、lastの使い方に問題があるように思いました。

{
  blogs(first: 1, reverse: false) {
    edges {
      node {
        id
        title
        articles(first: 1, reverse: true) {
          edges {
            node {
              id
              title
            }
          }
        }
      }
    }
  }
}

ご回答、誠にありがとうございます。GraphQL自体の無理解が原因だったようですね。。エラーメッセージに「Looks like something went wrong on our end」とあったため迷っておりましたが、これで先に進められそうです。重ねてお礼申し上げます。