ACSD-61195: Cart GraphQL request fails to return items on final page

The ACSD-61195 patch fixes the issue where no cart items are returned on the last page for the cart GraphQL request. This patch is available when the Quality Patches Tool (QPT) 1.1.51 is installed. The patch ID is ACSD-61195. Please note that the issue is scheduled to be fixed in Adobe Commerce 2.4.8.

Affected products and versions

The patch is created for Adobe Commerce version:

  • Adobe Commerce (all deployment methods) 2.4.7-p1

Compatible with Adobe Commerce versions:

  • Adobe Commerce (all deployment methods) 2.4.7-p1 - 2.4.7-p2
NOTE
The patch might become applicable to other versions with new Quality Patches Tool releases. To check if the patch is compatible with your Adobe Commerce version, update the magento/quality-patches package to the latest version and check the compatibility on the Quality Patches Tool: Search for patches page. Use the patch ID as a search keyword to locate the patch.

Issue

Cart GraphQL request fails to return items on final page.

Steps to reproduce:

  1. Create a new cart:

    code language-none
    mutation createEmptyCart($input: createEmptyCartInput) {
        createEmptyCart(input: $input)
    }
    
  2. Add more than five products to the cart:

    code language-none
    addProductsToCart(
        cartId: "{{cartId}}"
        cartItems: [
          {
            quantity: 1
            sku: "test"
          }
        ]
      ) {
        cart {
           itemsV2 {
           items {
            product {
             name
             sku
            }
            quantity
        }
        total_count
        page_info {
          page_size
          current_page
          total_pages
        }
      }
    }
    user_errors {
      code
      message
    }
    }
    }
    
  3. Run the following query:

    code language-none
    cart(cart_id: $cartId) {
    email
    itemsV2(pageSize: 2, currentPage: 3) {
        total_count
        page_info {
           page_size
           current_page
           total_pages
        }
      items {
        id
        product {
          name
          sku
        }
        quantity
        }
    }
    }
    

Expected results:

The query returns the items on the last page.

Actual results:

  {
    "data": {
        "cart": {
            "email": "roni_cost@example.com",
            "itemsV2": {
                "total_count": 5,
                "page_info": {
                    "page_size": 2,
                    "current_page": 3,
                    "total_pages": 3
                },
                "items": []
            }
        }
    }
    }

Apply the patch

To apply individual patches, use the following links depending on your deployment method:

To learn more about Quality Patches Tool, refer to:

For info about other patches available in QPT, refer to Quality Patches Tool: Search for patches in the Quality Patches Tool guide.

recommendation-more-help
c2d96e17-5179-455c-ad3a-e1697bb4e8c3