Skip to content

October 16, 2025

Changed

  • ProviderMetricTotal type update: The contents field has been changed to return a new type ProviderContentMetricTotal (previously it returned a different structure).

Migration Required

BREAKING CHANGE

The following fields on ProviderMetricTotal are deprecated and will be removed on November 16, 2025:

  • contentId
  • title

Action Required: Please migrate your queries to access these values through the new content field in ProviderContentMetricTotal instead.

Before:

graphql
{
  providerMetricTotal {
    contentId
    title
  }
}

After:

graphql
{
  providerMetricTotal {
    content {
      contentId
      title
    }
  }
}