Shiphero Api Query to retrieve information about an SKU

Hi,

I’m using the GraphQL API to retrieve information for a specific SKU. Specifically, I’m trying to access the dropship and auto-fulfill states of a product.

Here’s the query I’m currently using:

query {
  product(sku: "{sku}") {
    request_id
    complexity
    data {
      id
      sku
      name
      dropship
    }
  }
}

This successfully returns the dropship field, but I’m not sure how to retrieve the auto-fulfill information. Do you know how I can modify the query to include that?

Thanks in advance for your help!