-
Notifications
You must be signed in to change notification settings - Fork 42
Open
Labels
Description
Full list is here: https://github.com/molybdenum-99/reality/blob/master/data/wikidata-predicates.yaml
Add reasonable number of interesting ones.
Code for checking how much of entities uses predicate in web console:
PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX wd: <http://www.wikidata.org/entity/>
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX p: <http://www.wikidata.org/prop/>
PREFIX v: <http://www.wikidata.org/prop/statement/>
SELECT ?id ?idLabel ?o ?oLabel WHERE {
?id wdt:P1884 ?o .
SERVICE wikibase:label {
bd:serviceParam wikibase:language "en" .
}
} limit 100(replace P1884 with your value).