No content to show
User Activity
11-01-2022
すみません。そもそも 「availableForSale」は購入可能かどうかでした。
10-31-2022
いつ頃からかわからないですけど、StoreFront APIの結果が変わりましたでしょうか? query {
products(first:1, query:"available_for_sale:true") {
edges {
node {
availableForSale
priceRange {
minVariantPrice {
amount
currencyC...
こちら他のVariantでも試してみたところ、まだ「-product_status:archived」を付与することで取得できないものも存在してました。 Productの更新日時をそれぞれ確認したところ・取得できるようになったもの:updatedAtが5/28以降・取得できないままのもの:updateAtが5/28より前 ということで、取得できなかったProductを更新(一時的に在庫数を変更)して、再度同じクエリを投げてみたところ、取得できるようになりました。 5/25時点では、Product...
こちら再度確認したところ、現時点ではレスポンス結果が元に戻っているようです(5/24以前と同等の結果になる)。 結局、原因は不明ですが、バグかどうかもわからないまま、APIの挙動が変わるの困ったな。。。 下記件は、急にAPIの挙動変わって、今もそのままだし。https://community.shopify.com/c/technical-q-a/suddenly-from-today-the-response-of-productvariants-graphql/td-p/1382528
システムで、variantの取得に下記のようなクエリを実行しています。GraphQL queryのバージョンは「2021-07」を利用しています。(別途、最新版でも試してみましたが、結果は同じでした。。。)query {
productVariants(first: 1, query: "sku:'xxx' AND vendor:'yyy' AND -product_status:archived") {
pageInfo {
hasNextPage
}
...
Hi.0 hits in `productVariants` query.Of course, the product existed and I was able to get it until yesterday.Does not hit if vendor contains half-width space.Does not hit if vendor contains half-width space But `products` query is fine. Hit even if h...