Shopify Web Checkout Issue
问题 I am doing WebCheckout. After that, I am getting a callback of that Checkout callback. I have followed the way which has been written here. GraphClient client = ...; ID paymentId = ...; Storefront.QueryRootQuery query = Storefront.query(rootQuery -> rootQuery .node(paymentId, nodeQuery -> nodeQuery .onPayment(paymentQuery -> paymentQuery .checkout(checkoutQuery -> checkoutQuery .ready() .order(orderQuery -> orderQuery .processedAt() .orderNumber() .totalPrice())) .errorMessage() .ready() ) )