--- title: draftOrderAvailableDeliveryOptions - GraphQL Admin description: >- Available delivery options for a [`DraftOrder`](https://shopify.dev/docs/api/admin-graphql/latest/objects/DraftOrder) based on the provided input. The query returns shipping rates, local delivery rates, and pickup locations that merchants can choose from when creating draft orders. Accepts draft order details including [`LineItem`](https://shopify.dev/docs/api/admin-graphql/latest/objects/LineItem) objects, [`MailingAddress`](https://shopify.dev/docs/api/admin-graphql/latest/objects/MailingAddress) for shipping, and discounts to determine which delivery methods are available. Pagination parameters control the number of local pickup options returned. api_version: unstable api_name: admin source_url: html: >- https://shopify.dev/docs/api/admin-graphql/unstable/queries/draftOrderAvailableDeliveryOptions md: >- https://shopify.dev/docs/api/admin-graphql/unstable/queries/draftOrderAvailableDeliveryOptions.md --- # draft​Order​Available​Delivery​Options query Requires `read_draft_orders` access scope. Available delivery options for a [`DraftOrder`](https://shopify.dev/docs/api/admin-graphql/latest/objects/DraftOrder) based on the provided input. The query returns shipping rates, local delivery rates, and pickup locations that merchants can choose from when creating draft orders. Accepts draft order details including [`LineItem`](https://shopify.dev/docs/api/admin-graphql/latest/objects/LineItem) objects, [`MailingAddress`](https://shopify.dev/docs/api/admin-graphql/latest/objects/MailingAddress) for shipping, and discounts to determine which delivery methods are available. Pagination parameters control the number of local pickup options returned. ## Arguments * input [Draft​Order​Available​Delivery​Options​Input!](https://shopify.dev/docs/api/admin-graphql/unstable/input-objects/DraftOrderAvailableDeliveryOptionsInput) required The fields for the draft order. * local​Pickup​Count [Int](https://shopify.dev/docs/api/admin-graphql/unstable/scalars/Int) The number of local pickup options required. * local​Pickup​From [Int](https://shopify.dev/docs/api/admin-graphql/unstable/scalars/Int) The offset for the local pickup options. * search [String](https://shopify.dev/docs/api/admin-graphql/unstable/scalars/String) The search term for the delivery options. * session​Token [String](https://shopify.dev/docs/api/admin-graphql/unstable/scalars/String) Unique token used to trace execution and help optimize the calculation. *** ## Possible returns * Draft​Order​Available​Delivery​Options [Draft​Order​Available​Delivery​Options!](https://shopify.dev/docs/api/admin-graphql/unstable/objects/DraftOrderAvailableDeliveryOptions) The available delivery options for a draft order. *** ## Examples * ### draftOrderAvailableDeliveryOptions reference ## Query Reference ```graphql { draftOrderAvailableDeliveryOptions(input) { # draftOrderAvailableDeliveryOptions fields } } ```