Why is the specified cart not found in my e-commerce store?

Why is the specified cart not found in my e-commerce store?

umang-pancholi
Shopify Partner
20 0 1
Mutation:-

mutation
{
  cartLinesAdd(
    cartId: "gid://shopify/Cart/c1-1618fd08759dba06b2abd2ea105eb44a",
    lines: [
      {
        merchandiseId: "gid://shopify/ProductVariant/46951957758237",
        quantity: 15,
      }
    ]
  ) {
    cart {
      id
        lines(first: 10) {
            edges {
        node {
          id
          quantity
          merchandise {
            ... on ProductVariant {
                id
                image {
                    originalSrc
                    altText
                }
                product {
                    id
                    title
                    handle
                    description
                }
            }
          }
        }
            }
        }
    }
    userErrors {
      field
      message
    }
  }
}
 

Error:-
{
    "data": {
        "cartLinesAdd": {
            "cart": {
                "id": "gid://shopify/Cart/c1-1139fefe6f9cf37f68a18e6a6874ac9c",
                "lines": {
                    "edges": [
                        {
                            "node": {
                                "id": "gid://shopify/CartLine/6445ffa3-4161-4efa-abd7-b6b02b4ac69f?cart=c1-1139fefe6f9cf37f68a18e6a6874ac9c",
                                "quantity": 15,
                                "merchandise": {
                                    "id": "gid://shopify/ProductVariant/46951957758237",
                                    "image": {
                                        "originalSrc": "https://cdn.shopify.com/s/files/1/0837/2984/2461/files/Mobile-Cover-PNG-Image.png?v=1700722577",
                                        "altText": null
                                    },
                                    "product": {
                                        "id": "gid://shopify/Product/8826777829661",
                                        "title": "samsung s10 cover",
                                        "handle": "s10-cover",
                                        "description": "These high-profile Coverare your perfect casual wear companion. Featuring a durable rubber outer sole, they’ll withstand everything the weather can offer.These high-profile samsung s10 cover."
                                    }
                                }
                            }
                        }
                    ]
                }
            },
            "userErrors": [
                {
                    "field": [
                        "cartId"
                    ],
                    "message": "The specified cart does not exist."
                }
            ]
        }
    }
}
Replies 0 (0)