Shopify INTERNAL_SERVER_ERROR during Bulk query

Hi!

The following error occurred while testing the operation of bulk queries.

If anyone knows the cause, could you please let us know?

{
    "errors": [
        {
            "message": "Internal error. Looks like something went wrong on our end.\nRequest ID: 96c33b46-0c06-48ca-b19a-c73fde9192be (include this in support requests).", 
            "extensions": {
                "code": "INTERNAL_SERVER_ERROR", 
                "requestId": "96c33b46-0c06-48ca-b19a-c73fde9192be"
            }
        }
    ]
}

shop: booster-jp-develop.myshopify.com

We requested the query below and an error occurred on 2022-07-14 13:29 UTC.
We don’t think it was a timeout error because the error was returned immediately.

For the next 15 minutes or so, the bulk query could not be executed because the following error kept coming up.

A bulk query operation for this app and shop is already in progress: gid://shopify/BulkOperation/1573520048357.

We then re-ran it and the error did not occur.

mutation {
  bulkOperationRunQuery(
    query: """
      {
        products(query: "updated_at:>='2022-07-14T13:24:21Z' AND updated_at:<='2022-07-14T13:29:21Z'") {
          edges {
            node {
              id
              title
              status
              featuredImage {
                url
              }
              variants {
                edges {
                  node {
                    id
                    title
                    sku
                    inventoryQuantity
                    price
                    product {
                      id
                    }
                    createdAt
                    updatedAt
                  }
                }
              }
              onlineStoreUrl
              onlineStorePreviewUrl
              createdAt
              updatedAt
            }
          }
        }
      }
    """
  ) {
    bulkOperation {
      id
      status
    }
    userErrors {
      field
      message
    }
  }
}

Regards,
Booster Team