query-f077fab05fd66fa3f3c4cbcd96ca1ab5
title:Properties using P1114 SELECT ?prop ?propLabel ?num WHERE { SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". } ?prop a wikibase:Property. ?prop wdt:P1114 ?num. } LIMIT 1000
Use at
- https://query.wikidata.org/sparql
PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX bd: <http://www.bigdata.com/rdf#>
#title:Properties using P1114
SELECT ?prop ?propLabel ?num WHERE {
SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
?prop a wikibase:Property.
?prop wdt:P1114 ?num.
}
LIMIT 1000
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v2("?num"):::projected
v1("?prop"):::projected
c2(["bd:serviceParam"]):::iri
c6(["wikibase:Property"]):::iri
c4(["#91;AUTO_LANGUAGE#93;,en"]):::literal
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c2 --"wikibase:language"--> c4
end
v1 --"a"--> c6
v1 --"wdt:P1114"--> v2