Get all Wikipedia Infobox Templates and all Pages using them

后端 未结 3 471
抹茶落季
抹茶落季 2021-01-02 05:17

Given a Wikipedia page like Wikipedia: Stack Overflow there are often Infoboxes (mostly on the right hand at the top of the page). Example screenshot:

3条回答
  •  小鲜肉
    小鲜肉 (楼主)
    2021-01-02 05:54

    Ok, since i seem to have found a solution (most probably not the best) i want to share them.

    1) This SPARQL query can be used to find all pages that include a specific Infobox type:

    SELECT * WHERE { ?page dbpedia2:wikiPageUsesTemplate . ?page dbpedia2:name ?name . }

    Link at SNORQL


    2) This SPARQL query can be used to find all Infobox types:

    SELECT DISTINCT ?template WHERE { ?page dbpedia2:wikiPageUsesTemplate ?template . FILTER (regex(?template, "Infobox")) . } ORDER BY ?template

    Link at SNORQL

提交回复
热议问题