Bulk Operation for products internal_server_error and no explanation

This is infuriating (and typical of Shopify apis and sdks) I’ve been running these bulk operations without incident then today I just get internal_server_error no explanation as to why my operations are failing.

{
  "adminGraphqlApiId": "gid://shopify/BulkOperation/2944999391510",
  "completedAt": null,
  "createdAt": "2023-03-31T13:23:23-04:00",
  "errorCode": "internal_server_error",
  "status": "failed",
  "type": "query"
}

The query itself is for all products and their metafields

query {
 products {
  id
  handle
  hasOnlyDefaultVariant

  variants {
    edges {
      node {
        id
        sku
        price
      }
    }
  }

  metafields {
    edges {
      node {
        id
        key
        namespace
        type
        value
      }
    }
  }
 }
}

This is a store with 671 products and each product has 5 or 6 metafields set. Is there something going on with the api health or has something changed? I’m using the January 2023 api.