GraphQL storefront api returns Timeout error

We’ve been using GraphQL query for fetching the list of all product types in the store and it all worked fine until now. Currently, API returns error “Timeout”. Can anyone explain this or provide more details why is this happening?

query {
  productTypes(first: 5) {
    edges {
      cursor
      node
    }
    pageInfo {
      hasNextPage
    }
  }
}

------ 
response:
------
{
  "errors": [
    {
      "message": "Timeout"
    }
  ]
}
1 Like

Thanks for the heads up. I’ve reported this issue with the development team and will update this thread when I have more to share.

Cheers.

We’ve shipped a revert to the code which caused this issue. You should be good but let me know if you’re seeing anything to the contrary.

Cheers.

mutation productUpdate($input: ProductInput!) {
  productUpdate(input: $input) {
    product{
      title
    }
    userErrors{
      field
      message
    }
  }
}

================
{ errors: [ { message: ‘Timeout’ } ] }