How Do I Query Available Filters - GraphQL Admin API

I’m attempting to query the available filters for products in a collection by following step 3 here: https://shopify.dev/docs/custom-storefronts/building-with-the-storefront-api/products-collections/filter-products

I’m receiving an error that “Cannont query field filters on type ProductConnection” when I attempt to run the query listed on that page.

query Facets {
  collection(handle: "filterable-collection") {
    handle
    products(first: 10) {
      filters {
        id
        label
        type
        values {
          id
          label
          count
          input
        }
      }
    }
  }
}