query-31c7327ac4438f4df5438ba7ca5b05b6
TODO
Use at
- https://query.wikidata.org/sparql
PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX wd: <http://www.wikidata.org/entity/>
PREFIX bd: <http://www.bigdata.com/rdf#>
SELECT ?property ?value ?propertyLabel ?propertyDescription WHERE {
?property wikibase:propertyType wikibase:ExternalId; wikibase:directClaim ?wdt .
wd:Q214564 ?wdt ?value .
SERVICE wikibase:label { bd:serviceParam wikibase:language 'en' }
} ORDER BY ?propertyLabel
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v2("?property"):::projected
v1("?propertyLabel"):::projected
v4("?value"):::projected
v3("?wdt")
c6(["bd:serviceParam"]):::iri
c4(["wd:Q214564"]):::iri
c8(["en"]):::literal
c2(["wikibase:ExternalId"]):::iri
v2 --"wikibase:propertyType"--> c2
v2 --"wikibase:directClaim"--> v3
c4 -->v3--> v4
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c6 --"wikibase:language"--> c8
end