query-9aa95fac765da5854ae5cec2d32d18f5
Propertiesinstance of (P31)language of work or name (P407)author (P50)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 bd: <http://www.bigdata.com/rdf#>
SELECT ?book ?bookLabel ?auth ?authLabel
WHERE {
?book wdt:P31 wd:Q571.
?book wdt:P407 wd:Q33810.
?book wdt:P50 ?auth.
MINUS { ?item wdt:P800 ?book } .
SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE], en". }
}
ORDER BY DESC(?book)
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v2("?auth"):::projected
v1("?book"):::projected
v3("?item")
c8(["bd:serviceParam"]):::iri
c10(["#91;AUTO_LANGUAGE#93;, en"]):::literal
c2(["wd:Q571"]):::iri
c4(["wd:Q33810"]):::iri
v1 --"wdt:P31"--> c2
v1 --"wdt:P407"--> c4
v1 --"wdt:P50"--> v2
subgraph minus0["MINUS"]
style minus0 stroke-width:6px,fill:pink,stroke:red;
v3 --"wdt:P800"--> v1
end
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c8 --"wikibase:language"--> c10
end