query-da91362992c2b834cf0d575bca9b8924
only works with URLs ending in a slash. This finds only 6 results rather than 12:schema:isPartOf: Sorry for barging in, but it wasn't obvious to me that Jura1@
Use at
- https://query.wikidata.org/sparql
PREFIX xsd: <http://www.w3.org/2001/XMLSchema#>
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX wd: <http://www.wikidata.org/entity/>
PREFIX schema: <http://schema.org/>
SELECT (COUNT (*) as ?count) (?count * 365 * 40 as ?total)
WHERE
{
?item wdt:P569 "1919-10-01"^^xsd:date .
MINUS { [] schema:about ?item ; schema:isPartOf <https://en.wikipedia.org/> }
?item wdt:P18 [] ; wdt:P31 wd:Q5 .
}
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v2("?count"):::projected
v1("?item")
v3("?total")
a1((" "))
a2((" "))
c5([https://en.wikipedia.org/]):::iri
c8(["wd:Q5"]):::iri
c2(["1919-10-01^^xsd:date"]):::literal
v1 --"wdt:P569"--> c2
subgraph minus0["MINUS"]
style minus0 stroke-width:6px,fill:pink,stroke:red;
a1 --"schema:about"--> v1
a1 --"schema:isPartOf"--> c5
end
v1 --"wdt:P18"--> a2
v1 --"wdt:P31"--> c8
bind2[/"count(*)"/]
bind2 --as--o v2
bind3[/"?count * '365^^xsd:integer' * '40^^xsd:integer'"/]
v2 --o bind3
bind3 --as--o v3