query-f0ab8337c603060ce1cc0ef298b62c3a
TODO
Use at
- https://query.wikidata.org/sparql
PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX p: <http://www.wikidata.org/prop/>
PREFIX bd: <http://www.bigdata.com/rdf#>
select distinct ?prop ?qualifier ?qualifierLabel {
?prop a wikibase:Property
; wikibase:claim ?stProp
.
[] ?stProp [?qual []]
.
?qual ^wikibase:qualifier ?qualifier .
values ?stProp { p:P1327 }
SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
}
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v1("?prop"):::projected
v3("?qual")
v4("?qualifier"):::projected
v5("?stProp")
a3((" "))
a2((" "))
a1((" "))
c6(["bd:serviceParam"]):::iri
c2(["wikibase:Property"]):::iri
c8(["#91;AUTO_LANGUAGE#93;,en"]):::literal
v1 --"a"--> c2
v1 --"wikibase:claim"--> v5
a1 -->v3--> a2
a3 -->v5--> a1
v4 --"wikibase:qualifier"--> v3
bind0[/VALUES ?stProp/]
bind0-->v5
bind00(["p:P1327"])
bind00 --> bind0
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c6 --"wikibase:language"--> c8
end