query-e0e0d3564b1eaa63f392311539ba7afd
Get Works and Work label based on VIAF ID
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
WHERE{
?author wdt:P214 "70194046".
?work wdt:P50 ?author
SERVICE wikibase:label { bd:serviceParam wikibase:language "en,en" }
}
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v1("?author")
v2("?work"):::projected
c5(["bd:serviceParam"]):::iri
c2(["70194046"]):::literal
c7(["en,en"]):::literal
v1 --"wdt:P214"--> c2
v2 --"wdt:P50"--> v1
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c5 --"wikibase:language"--> c7
end