ComboStrap Quality - Broken links
Table of Contents
1 - About
A broken link is a internal link that points to a non-existing page.
They hurt your SEO and should be avoided at all cost.
You can monitor them and you can even list them
2 - Articles Related
3 - List
You can query the database against the page statistics data with the below Analytics SQL to list the page with broken links and their count.
select
id,
json_extract(analytics, '$.statistics.internal_broken_links_count')
from
pages
where
json_extract(analytics, '$.statistics.internal_broken_links_count') is not null;