I am working on a new app and since the announcement and forced migration to GraphQL I wrote the graphqlQL query that I would need to retrieve products for the new app and variants with fragments and @include to be able to selectively add information when needed.
When I ran the query it took over 19seconds to return 660 products. I removed all the “extra” information like metafields and concentrated on only the information that I would have gotten back by simply hitting the products rest endpoint and I got the time down to around 11 seconds. The rest api took in comparison 1.7 seconds to return the same amount of records!
Here is my GraphQL query
query getProducts(
$first: Int!,
$after:String,
$query:String,
) {
products(first: $first, after:$after, query:$query) {
pageInfo {
hasNextPage
endCursor
}
nodes {
id
title
handle
descriptionHtml
description
productType
tags
vendor
publishedAt
createdAt
status
hasOnlyDefaultVariant
images(first:10){
nodes{
altText
url
}
}
options {
name
position
}
variants(first:100){
pageInfo{
hasNextPage
endCursor
}
nodes{
id
displayName
barcode
taxable
sku
price
compareAtPrice
inventoryQuantity
inventoryItem{
requiresShipping
id
measurement{
weight{
unit
value
}
}
}
selectedOptions{
name
value
}
}
}
}
}
}
{
"first": 250,
"query":"status:ACTIVE"
}
Please fix this before forcing us developers and app developers to migrate!
We are building a Public app and want it to be performant. I want to know that if we build it now using the REST api that we will not be prevented from getting the app through the review cycle, come on guys the performance difference is absolutely horrible, and please don’t suggest using bulkoperation where every connection is on its own line, thats a mess I really have no desire to even start thinking about.
Cheers,
Gary