I am trying to merge cart line items and following the instruction here: https://shopify.dev/docs/api/functions/reference/cart-transform#example-merge-operation
But got the InvalidOutputError
First question is how can I look into the details of error. There is no way allow me to click into the error.
Here is the input
query RunInput {
cart {
lines {
id
quantity
cost {
amountPerQuantity {
amount
currencyCode
}
}
# Cart line attribute to get the uuid
uuid: attribute(key: "uuid") {
value
}
}
}
}

