query-a57657c963a9493f056d07eae6efc1cb

rq turtle/ttl

Propertiesauthor (P50)notable work (P800)

Use at

PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX schema: <http://schema.org/>
PREFIX bd: <http://www.bigdata.com/rdf#>
SELECT DISTINCT ?work ?workLabel ?author ?authorLabel ?article WHERE {
?work wdt:P50 ?author .
?article schema:about ?work;
    schema:isPartOf <https://or.wikipedia.org/> .
MINUS {?author wdt:P800 []}
SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en" }
} ORDER BY ?authorLabel

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v4("?article"):::projected v3("?author"):::projected v1("?authorLabel"):::projected v2("?work"):::projected a1((" ")) c7(["bd:serviceParam"]):::iri c9(["#91;AUTO_LANGUAGE#93;,en"]):::literal c4([https://or.wikipedia.org/]):::iri v2 --"wdt:P50"--> v3 v4 --"schema:about"--> v2 v4 --"schema:isPartOf"--> c4 subgraph minus0["MINUS"] style minus0 stroke-width:6px,fill:pink,stroke:red; v3 --"wdt:P800"--> a1 end subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c7 --"wikibase:language"--> c9 end