[01:18:26] / @deprecated temporary alias, remove before 1.45 release [01:18:26] class_alias( PageLatestRevisionChangedEvent::class, 'MediaWiki\Page\Event\PageRevisionUpdatedEvent' ); [01:18:30] nice.. [19:38:50] I am going away, but I am wondering whether there is an API for https://meta.wikimedia.org/wiki/Special:LinkSearch , I could not find one [19:39:26] I was randomly expecting that any new QueryPage would end up "magically" under the action API [19:43:48] I have found an equivalent: ApiQueryExtLinksUsage.php [19:43:59] https://meta.wikimedia.org/w/api.php?action=query&format=json&list=exturlusage&formatversion=2&euquery=www.mediawiki.org :) [19:49:48] https://meta.wikimedia.org/w/api.php?action=help&modules=query%2Bquerypage [19:50:29] which should be [19:50:29] $this->queryPages = array_values( array_diff( [19:50:29] array_column( QueryPage::getPages(), 1 ), // [ class, name ] [19:50:29] $this->getConfig()->get( MainConfigNames::APIUselessQueryPages ) [19:50:29] ) ); [19:51:03] And LinkSearch is explicitly in $wgAPIUselessQueryPages, because as you found there's another module that does it ;)