October 16, 2025
Changed
ProviderMetricTotaltype update: Thecontentsfield has been changed to return a new typeProviderContentMetricTotal(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:
contentIdtitle
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
}
}
}