query-1e3b8ddb9d1faa62c78b97fb0614f1a7

rq turtle/ttl

TODO

Use at

PREFIX xsd: <http://www.w3.org/2001/XMLSchema#>
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 ?item ?itemLabel ?pop where
{

{ SELECT DISTINCT ?item ?pop WHERE 
  {
    ?item wdt:P31/wdt:P279* wd:Q3331189.

    ?item wdt:P577 ?published.

    FILTER("1990-00-00"^^xsd:date <= ?published &&
           ?published < "1999-12-31"^^xsd:dat)  }  
}  SERVICE wikibase:label {bd:serviceParam wikibase:language "en","he" . }
  filter not exists {?article schema:about ?item ;
          schema:isPartOf <https://he.wikipedia.org/> .} 
  ?article1 schema:about ?item ;
          schema:isPartOf <https://en.wikipedia.org/> .
} order by ?itemLabel

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v2("?article") v5("?article1") v3("?item"):::projected v1("?itemLabel"):::projected v4("?published") a1((" ")) c3([https://he.wikipedia.org/]):::iri c8(["wd:Q3331189"]):::iri c13(["en"]):::literal c15([https://en.wikipedia.org/]):::iri c11(["bd:serviceParam"]):::iri c14(["he"]):::literal f0[["not "]] subgraph f0e0["Exists Clause"] e0v1 --"schema:about"--> e0v2 e0v1 --"schema:isPartOf"--> e0c3 e0v1("?article"):::projected e0v2("?item"):::projected e0c3([https://he.wikipedia.org/]):::iri end f0--EXISTS--> f0e0 f0 --> v2 f0 --> c1 f0 --> v3 f0 --> c2 f0 --> c3 v2 --"schema:about"--> v3 v2 --"schema:isPartOf"--> c3 f1[["'1990-00-00^^xsd:date' <= ?published?published < s1999-12-31^^<http://www.w3.org/2001/XMLSchema#dat>'"]] f1 --> v4 v3 --"wdt:P31"--> a1 a1 --"wdt:P279"--> c8 v3 --"wdt:P577"--> v4 subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c11 --"wikibase:language"--> c13 c11 --"wikibase:language"--> c14 end v5 --"schema:about"--> v3 v5 --"schema:isPartOf"--> c15