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
Alex
August 8, 2019, 2:44pm
2
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.
Alex
August 23, 2019, 3:37pm
3
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.
Pavel6
October 24, 2019, 6:09am
4
mutation productUpdate($input: ProductInput!) {
productUpdate(input: $input) {
product{
title
}
userErrors{
field
message
}
}
}
================
{ errors: [ { message: ‘Timeout’ } ] }