Page MenuHomePhabricator

Identify GLOW articles created or edited with the translation tool
Closed, ResolvedPublic

Description

#get list of articles that were created, in step with use of the article translation tool 
SELECT
    page_id, 
    revision_tags
FROM wmf.mediawiki_history
WHERE
    snapshot = "{MWH_SNAPSHOT}"
    AND event_timestamp >="{contest_start}"
    AND event_timestamp <"{contest_end}"
    AND page_namespace = 0
    AND event_entity = 'page'
    AND event_type = 'create'
    AND revision_is_identity_reverted = False 
    AND revision_is_deleted_by_page_deletion = False
    AND array_contains(revision_tags, "contenttranslation")   
    AND wiki_db = '{wiki_db}' 
    AND page_id IN {clean_pageids}
GROUP BY 
    page_id, revision_tags

#get list of articles that have an edit associated with the content translation tool
SELECT
    page_id, 
    revision_tags
FROM wmf.mediawiki_history
WHERE
    snapshot = "{MWH_SNAPSHOT}"
    AND event_timestamp >="{contest_start}"
    AND event_timestamp <"{contest_end}"
    AND page_namespace = 0
    AND event_entity = 'revision'
    AND revision_is_identity_reverted = False 
    AND revision_is_deleted_by_page_deletion = False
    AND array_contains(revision_tags, "contenttranslation")   
    AND wiki_db = '{wiki_db}' 
    AND page_id IN {clean_pageids}
GROUP BY 
    page_id, revision_tags

see also T194650 and T245373

Event Timeline

articles that were edited using a translation tool (by type):
expanded 113 (expanded total 1418)
new 3602. (new total 7445)


Expanded articles edited using a translation tool:
7.96%


New articles edited using a translation tool:
48.38%