query-b77d1a52c409bbdeae38c9680ace5848
Ancient Romans without English descriptions SELECT ?item ?itemLabel WHERE { ?item wdt:P27 wd:Q1747689 . MINUS { ?item schema:description ?endesc . FILTER(LANG(?endesc) = 'en') . } SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE]". } } ORDER BY ?itemLabel
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#>
#Ancient Romans without English descriptions
SELECT ?item ?itemLabel WHERE {
?item wdt:P27 wd:Q1747689 .
MINUS { ?item schema:description ?endesc .
FILTER(LANG(?endesc) = 'en') . }
SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE]". }
}
ORDER BY ?itemLabel
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v3("?endesc")
v2("?item"):::projected
v1("?itemLabel"):::projected
c6(["bd:serviceParam"]):::iri
c8(["#91;AUTO_LANGUAGE#93;"]):::literal
c2(["wd:Q1747689"]):::iri
v2 --"wdt:P27"--> c2
subgraph minus0["MINUS"]
style minus0 stroke-width:6px,fill:pink,stroke:red;
f1[["?endesc = 'en'"]]
f1 --> v3
v2 --"schema:description"--> v3
end
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c6 --"wikibase:language"--> c8
end