query-c16468393e5c65be08c0df515f7c61f3
Articoli di Biblioteche oggi pubblicate dopo il 31 maggio 2017, prive di parole chiave (P921 Argomento principale) SELECT DISTINCT ?articolo ?articoloLabel ?anno ?URL ?parolachiaveLabel WHERE { ?articolo wdt:P31 wd:Q13442814 . { ?articolo wdt:P1433 wd:Q3639685 . } UNION { ?articolo wdt:P1433 wd:Q58294861 . } # Rivista Biblioteche Oggi oppure Biblioteche Oggi Trends ?articolo wdt:P577 ?anno . FILTER NOT EXISTS { ?articolo wdt:P921 ?parolachiave .} FILTER (?anno < "2018-01-01"^^xsd:dateTime ). # Data di pubblicazione precedente a gennaio 2018 . OPTIONAL {?articolo wdt:P2699 ?URL. } SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". } } ORDER BY DESC(?anno)
Use at
- https://query.wikidata.org/sparql
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 bd: <http://www.bigdata.com/rdf#>
#Articoli di Biblioteche oggi pubblicate dopo il 31 maggio 2017, prive di parole chiave (P921 Argomento principale)
SELECT DISTINCT ?articolo ?articoloLabel ?anno ?URL ?parolachiaveLabel
WHERE {
?articolo wdt:P31 wd:Q13442814 .
{ ?articolo wdt:P1433 wd:Q3639685 . } UNION { ?articolo wdt:P1433 wd:Q58294861 . } # Rivista Biblioteche Oggi oppure Biblioteche Oggi Trends
?articolo wdt:P577 ?anno .
FILTER NOT EXISTS { ?articolo wdt:P921 ?parolachiave .}
FILTER (?anno < "2018-01-01"^^xsd:date ). # Data di pubblicazione precedente a gennaio 2018 .
OPTIONAL {?articolo wdt:P2699 ?URL. }
SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
}
ORDER BY DESC(?anno)
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v4("?URL"):::projected
v1("?anno"):::projected
v2("?articolo"):::projected
v3("?parolachiave")
c4(["wd:Q13442814"]):::iri
c7(["wd:Q58294861"]):::iri
c11(["bd:serviceParam"]):::iri
c13(["#91;AUTO_LANGUAGE#93;,en"]):::literal
c6(["wd:Q3639685"]):::iri
f0[["?anno < '2018-01-01^^xsd:date'"]]
f0 --> v1
f1[["not "]]
subgraph f1e0["Exists Clause"]
e0v1 --"wdt:P921"--> e0v2
e0v1("?articolo"):::projected
e0v2("?parolachiave"):::projected
end
f1--EXISTS--> f1e0
f1 --> v2
f1 --> c2
f1 --> v3
v2 --"wdt:P921"--> v3
v2 --"wdt:P31"--> c4
subgraph union0[" Union "]
subgraph union0l[" "]
style union0l fill:#abf,stroke-dasharray: 3 3;
v2 --"wdt:P1433"--> c7
end
subgraph union0r[" "]
style union0r fill:#abf,stroke-dasharray: 3 3;
v2 --"wdt:P1433"--> c6
end
union0r <== or ==> union0l
end
v2 --"wdt:P577"--> v1
subgraph optional0["(optional)"]
style optional0 fill:#bbf,stroke-dasharray: 5 5;
v2 -."wdt:P2699".-> v4
end
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c11 --"wikibase:language"--> c13
end