Hello,
I am using 2023-04 version and I have replaced all deprecated fields with updated ones as below following the doc.
X-Request-ID: 7f4e541e-6e8c-46c3-8b77-7237a5708ca4
shippingOptions => deliveryOptions
SubscriptionShippingOptionResultSuccess => SubscriptionDeliveryOptionResultSuccess
SubscriptionShippingOptionResultFailure => SubscriptionDeliveryOptionResultFailure
query subscriptionDraft($id: ID!, $address: MailingAddressInput) {
subscriptionDraft(id: $id) {
shippingOptions: deliveryOptions(deliveryAddress: $address) {
__typename
... on SubscriptionDeliveryOptionResultSuccess {
shippingOptions: deliveryOptions {
... on SubscriptionShippingOption {
title
price {
amount
currencyCode
}
}
}
}
... on SubscriptionDeliveryOptionResultFailure {
message
}
}
}
}
But I am still getting deprecation warning.
Is this expected?
Looking forward to getting the answer.
Thanks!