query-847392334af601e7ba268b475df4c018
Propertiesauthor (P50)occupation (P106)notable work (P800)
Use at
- https://query.wikidata.org/sparql
PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX wd: <http://www.wikidata.org/entity/>
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://en.wikipedia.org/> .
?author wdt:P106 wd:Q49757
MINUS {?author wdt:P800 []}
SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],mul,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((" "))
c4([https://en.wikipedia.org/]):::iri
c9(["bd:serviceParam"]):::iri
c6(["wd:Q49757"]):::iri
c11(["#91;AUTO_LANGUAGE#93;,mul,en"]):::literal
v2 --"wdt:P50"--> v3
v4 --"schema:about"--> v2
v4 --"schema:isPartOf"--> c4
v3 --"wdt:P106"--> c6
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;
c9 --"wikibase:language"--> c11
end