query-9077835fa06ac172425316dc6d75f205
Item pubblicati in una rivista ma senza argomento SELECT ?titolo ?titoloLabel ?pagine ?paginetot ?annopubblicazione ?rivista ?rivistaLabel WHERE { ?titolo wdt:P50 wd:Q22093383 . OPTIONAL { ?titolo wdt:P304 ?pagine .} OPTIONAL { ?titolo wdt:P1104 ?paginetot .} OPTIONAL { ?titolo wdt:P577 ?annopubblicazione .} OPTIONAL { ?titolo wdt:P1433 ?rivista .} MINUS { ?titolo wdt:P921 ?argomento .}
SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],it". }
}
ORDER BY ?titoloLabel
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 bd: <http://www.bigdata.com/rdf#>
# Item pubblicati in una rivista ma senza argomento
SELECT ?titolo ?titoloLabel ?pagine ?paginetot ?annopubblicazione ?rivista ?rivistaLabel
WHERE
{
?titolo wdt:P50 wd:Q22093383 .
OPTIONAL { ?titolo wdt:P304 ?pagine .}
OPTIONAL { ?titolo wdt:P1104 ?paginetot .}
OPTIONAL { ?titolo wdt:P577 ?annopubblicazione .}
OPTIONAL { ?titolo wdt:P1433 ?rivista .}
MINUS { ?titolo wdt:P921 ?argomento .}
SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],it". }
}
ORDER BY ?titoloLabel
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v5("?annopubblicazione"):::projected
v7("?argomento")
v3("?pagine"):::projected
v4("?paginetot"):::projected
v6("?rivista"):::projected
v2("?titolo"):::projected
v1("?titoloLabel"):::projected
c9(["bd:serviceParam"]):::iri
c2(["wd:Q22093383"]):::iri
c11(["#91;AUTO_LANGUAGE#93;,it"]):::literal
v2 --"wdt:P50"--> c2
subgraph optional0["(optional)"]
style optional0 fill:#bbf,stroke-dasharray: 5 5;
v2 -."wdt:P304".-> v3
end
subgraph optional1["(optional)"]
style optional1 fill:#bbf,stroke-dasharray: 5 5;
v2 -."wdt:P1104".-> v4
end
subgraph optional2["(optional)"]
style optional2 fill:#bbf,stroke-dasharray: 5 5;
v2 -."wdt:P577".-> v5
end
subgraph optional3["(optional)"]
style optional3 fill:#bbf,stroke-dasharray: 5 5;
v2 -."wdt:P1433".-> v6
end
subgraph minus0["MINUS"]
style minus0 stroke-width:6px,fill:pink,stroke:red;
v2 --"wdt:P921"--> v7
end
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c9 --"wikibase:language"--> c11
end