-
Notifications
You must be signed in to change notification settings - Fork 188
Closed
Description
Issue summary
The new version 5.8.0 has caused issues with the SDK functioning properly. Specifically content type errors, bad request errors and Unsupported media type errors.
Expected behavior
Version 5.7.0 seems to be working properly, this was a breaking issue caused in 5.8.0
Actual behavior
The update starts causing errors in certain graphql calls as listed below:
Steps to reproduce the problem
- Certain times storefront calls to fetch collections/products causes 503 errors
- Graphql Admin calls for files always returns bad request
- Storefront calls to store pages causes unsupported media type errors
Sample Queries to Reproduce errors in 5.8.0
- Fetch Store Pages with Storefront API
{
pages(query: "title:$query*", first: 50) {
edges {
node {
title
id
}
}
}
}
- Fetch store media/files with Admin API
{
files(
sortKey: CREATED_AT
reverse: true
first: 50
) {
edges {
node {
... on MediaImage {
image {
url
}
}
}
cursor
}
pageInfo {
hasNextPage
hasPreviousPage
startCursor
endCursor
}
}
}
tommypepsi
Metadata
Metadata
Assignees
Labels
No labels