query-cc8aa36b836d58005dcbfddb7e3ddef7
Works mentioning Wikidata properties
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#>
select ?work ?workLabel ?property ?propertyLabel where {
?work wdt:P3176 ?property
service wikibase:label { bd:serviceParam wikibase:language "da" . }
}
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v2("?property"):::projected
v1("?work"):::projected
c3(["bd:serviceParam"]):::iri
c5(["da"]):::literal
v1 --"wdt:P3176"--> v2
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c3 --"wikibase:language"--> c5
end