MDVA-43348:ギフトカードのGraphQLリクエストにエラーが表示される
MDVA-43348 パッチでは、「uid」が含まれていると Gift Card GraphQL リクエストでエラーが表示され gift_card_options
問題が修正されています。 このパッチは、Quality Patches Tool (QPT)1.1.12 がインストールされている場合に使用できます。 パッチ ID は MDVA-43348。 この問題はAdobe Commerce 2.4.5 で修正される予定であることに注意してください。
影響を受ける製品とバージョン
Adobe Commerce バージョン用のパッチが作成されます。
- Adobe Commerce(すべてのデプロイメント方法) 2.4.2
Adobe Commerce バージョンとの互換性:
- Adobe Commerce(すべてのデプロイメント方法) 2.4.2 ~ 2.4.4
NOTE
パッチは、新しい Quality Patches Tool リリースを使用する他のバージョンにも適用される可能性があります。 パッチがAdobe Commerceのバージョンと互換性があるかどうかを確認するには、
magento/quality-patches
パッケージを最新バージョンに更新し、Quality Patches Tool: Search for patches page で互換性を確認します。 パッチ ID を検索キーワードとして使用して、パッチを見つけます。問題
gift_card_options に「uid」が含まれている場合、ギフトカードのGraphQL リクエストにエラーが表示されます。
再現手順 :
- ギフトカード製品を作成します。
- 再インデックスを実行します。
- URL キーが「gift-card」であるGraphQL呼び出しを行います。
query getProductOptionsForProductPage_bypassFastly($urlKey: String!) {
products(filter: { url_key: { eq: $urlKey } }) {
items {
id
url_key
... on GiftCardProduct {
allow_open_amount
open_amount_min
open_amount_max
giftcard_type
is_redeemable
lifetime
allow_message
message_max_length
gift_card_options {
uid
title
required
}
}
}
}
}
期待される結果 :
ギフトカードのデータは、リクエストに応じて返されます。
実際の結果 :
ギフト カードのデータを要求すると、次のエラーが発生します。
{
"errors": [
{
"debugMessage": "Cannot return null for non-nullable field \"CustomizableFieldOption.uid\".",
"message": "Internal server error",
"extensions": {
"category": "internal"
},
"locations": [
{
"line": 16,
"column": 1
}
],
"path": [
"products",
"items",
0,
"gift_card_options",
0,
"uid"
]
},
{
"debugMessage": "Cannot return null for non-nullable field \"CustomizableFieldOption.uid\".",
"message": "Internal server error",
"extensions": {
"category": "internal"
},
"locations": [
{
"line": 16,
"column": 1
}
],
"path": [
"products",
"items",
0,
"gift_card_options",
1,
"uid"
]
},
{
"debugMessage": "Cannot return null for non-nullable field \"CustomizableFieldOption.uid\".",
"message": "Internal server error",
"extensions": {
"category": "internal"
},
"locations": [
{
"line": 16,
"column": 1
}
],
"path": [
"products",
"items",
0,
"gift_card_options",
2,
"uid"
]
},
{
"debugMessage": "Cannot return null for non-nullable field \"CustomizableFieldOption.uid\".",
"message": "Internal server error",
"extensions": {
"category": "internal"
},
"locations": [
{
"line": 16,
"column": 1
}
],
"path": [
"products",
"items",
0,
"gift_card_options",
3,
"uid"
]
},
{
"debugMessage": "Cannot return null for non-nullable field \"CustomizableFieldOption.uid\".",
"message": "Internal server error",
"extensions": {
"category": "internal"
},
"locations": [
{
"line": 16,
"column": 1
}
],
"path": [
"products",
"items",
0,
"gift_card_options",
4,
"uid"
]
}
],
"data": {
"products": {
"items": [
{
"id": 2,
"url_key": "gitf-card",
"allow_open_amount": false,
"open_amount_min": null,
"open_amount_max": null,
"giftcard_type": "VIRTUAL",
"is_redeemable": true,
"lifetime": 0,
"allow_message": true,
"message_max_length": 255,
"gift_card_options": [
null,
null,
null,
null,
null
]
}
]
}
}
}
パッチの適用
個々のパッチを適用するには、デプロイメント方法に応じて、次のリンクを使用します。
- Adobe CommerceまたはMagento Open Sourceオンプレミス:Quality Patches Tool > Usage in the Quality Patches Tool guide.
- クラウドインフラストラクチャー上のAdobe Commerce:クラウドインフラストラクチャー上のCommerce ガイドの アップグレードとパッチ/ パッチの適用」を参照してください。
関連資料
品質向上パッチツールの詳細については、次を参照してください。
- 品質向上パッチツールがリリースされました:品質向上パッチをセルフサービスで提供する新しいツールがサポートナレッジベースに追加されました。
- Quality Patches Tool を使用して、Adobe Commerceの問題に対するパッチが使用可能かどうかを確認します(Quality Patches Tool ガイド)。
QPT で使用可能なその他のパッチの詳細については、Quality Patches Tool ガイドの「Quality Patches Tool: Search for patches」を参照してください。
recommendation-more-help
c2d96e17-5179-455c-ad3a-e1697bb4e8c3