Hi!
I am writing to report an issue regarding a missing product while querying on Storefront API. Despite this, I can see products in stores. Only new products not coming and any new changes on existing products are not reflected on the Storefront query.
This issue happens in the past also.
We using Graphql /api/2022-07/graphql.json
This is the query
{
"operationName": "getProducts",
"variables": {
"first": 15,
"query": "vendor:\"SnoozeShade\"",
"sortKey": "CREATED_AT",
"reverse": true
},
"query": "query getProducts($first: Int, $after: String, $query: String, $sortKey: ProductSortKeys, $reverse: Boolean) {\n products(\n first: $first\n after: $after\n query: $query\n sortKey: $sortKey\n reverse: $reverse\n ) {\n edges {\n cursor\n node {\n id\n title\n handle\n vendor\n productType\n tags\n createdAt\n metafield(key: \"life_stage\", namespace: \"custom\") {\n value\n __typename\n }\n options {\n id\n name\n values\n __typename\n }\n priceRange {\n maxVariantPrice {\n amount\n currencyCode\n __typename\n }\n minVariantPrice {\n amount\n currencyCode\n __typename\n }\n __typename\n }\n variants(first: 100) {\n edges {\n node {\n id\n title\n quantityAvailable\n currentlyNotInStock\n priceV2 {\n amount\n currencyCode\n __typename\n }\n compareAtPriceV2 {\n amount\n currencyCode\n __typename\n }\n selectedOptions {\n name\n value\n __typename\n }\n __typename\n }\n __typename\n }\n __typename\n }\n featuredImage {\n id\n altText\n url\n __typename\n }\n __typename\n }\n __typename\n }\n pageInfo {\n startCursor\n endCursor\n hasNextPage\n hasPreviousPage\n __typename\n }\n __typename\n }\n}"
}
Not being able to rely on the Storefront API is stressing me out