query-ad61da3785da48406a898228084cff20

rq turtle/ttl

Articoli di riviste italiane relative alla scienza dell'informazione e delle biblioteche, in ordine di rivista, data crescente e titolo dell'articolo, escluse le recensioni SELECT DISTINCT ?articolo ?articoloLabel ?rivista ?rivistaLabel ?dataPubbl WHERE { ?rivista wdt:P31 wd:Q5633421 ; wdt:P495 wd:Q38 ; wdt:P921 wd:Q13420675 . ?articolo wdt:P31 wd:Q13442814 ; wdt:P1433 ?rivista ; wdt:P577 ?dataPubbl . MINUS { ?articolo wdt:P31 wd:Q637866 .} # escluse le recensioni SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],it,en". } } ORDER BY ?rivista ?dataPubbl ?articoloLabel

Use at

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#>
#Articoli di riviste italiane relative alla scienza dell'informazione e delle biblioteche, in ordine di rivista, data crescente e titolo dell'articolo, escluse le recensioni
SELECT DISTINCT ?articolo ?articoloLabel ?rivista ?rivistaLabel ?dataPubbl
WHERE {
  ?rivista wdt:P31 wd:Q5633421 ; wdt:P495 wd:Q38 ; wdt:P921 wd:Q13420675 .
  ?articolo wdt:P31 wd:Q13442814 ; wdt:P1433 ?rivista ; wdt:P577 ?dataPubbl .
  MINUS { ?articolo wdt:P31 wd:Q637866 .} # escluse le recensioni
  SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],it,en". }
}
ORDER BY ?rivista ?dataPubbl ?articoloLabel

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v4("?articolo"):::projected v3("?articoloLabel"):::projected v2("?dataPubbl"):::projected v1("?rivista"):::projected c14(["#91;AUTO_LANGUAGE#93;,it,en"]):::literal c6(["wd:Q13420675"]):::iri c10(["wd:Q637866"]):::iri c2(["wd:Q5633421"]):::iri c4(["wd:Q38"]):::iri c7(["wd:Q13442814"]):::iri c12(["bd:serviceParam"]):::iri v1 --"wdt:P31"--> c2 v1 --"wdt:P495"--> c4 v1 --"wdt:P921"--> c6 v4 --"wdt:P31"--> c7 v4 --"wdt:P1433"--> v1 v4 --"wdt:P577"--> v2 subgraph minus0["MINUS"] style minus0 stroke-width:6px,fill:pink,stroke:red; v4 --"wdt:P31"--> c10 end subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c12 --"wikibase:language"--> c14 end