A structured, searchable knowledge base of Wiki In Africa training materials — organised by campaign, skill level, project and language, and queryable directly as open data.
No resources match your search.
Try different terms or clear the filters.
Find resources matched to your experience level.
Filter by the platform you are working on
All resources are structured data — query them directly using SPARQL to build reports, exports or custom views. The query service updates automatically as new Items are added.
Open Query Service ↗PREFIX wd: <https://wikiinafrica.wikibase.cloud/entity/>
PREFIX wdt: <https://wikiinafrica.wikibase.cloud/prop/direct/>
PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX bd: <http://www.bigdata.com/rdf#>
SELECT ?item ?itemLabel ?creators
WHERE {
?item wdt:P2 wd:Q4 .
OPTIONAL {
SELECT ?item (GROUP_CONCAT(DISTINCT ?c; separator=" & ") AS ?creators)
WHERE { ?item wdt:P8 ?c . }
GROUP BY ?item
}
SERVICE wikibase:label {
bd:serviceParam wikibase:language "en" .
}
}
ORDER BY ?itemLabel