Fetching Delivery Options For Subscription Contract With 2023-04 Version Returns Deprecation Warning

Hello,

I am using 2023-04 version and I have replaced all deprecated fields with updated ones as below following the doc.

https://shopify.dev/docs/api/admin-graphql/2023-04/objects/SubscriptionDraft#field-subscriptiondraft-shippingoptions

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!

Hi Aron,

If you check the API health for the app on your partner dashboard, are you seeing any deprecated calls being listed? It’s possible if you’ve made these updates recently that we just need to wait until it is fully registered on our side.

Hope this helps,