query-c5acd266ab0403ada40369f20fd8f002
TODO
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#>
#defaultView:BubbleChart
#Focus list journals without publishers
SELECT ?journalLabel (COUNT(?article) AS ?count)
WHERE {?article wdt:P5008 wd:Q55439927;
wdt:P1433 ?journal.
MINUS {?journal wdt:P123 ?publisher}.
SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
}
GROUP BY ?journalLabel
ORDER BY DESC(?count)
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v2("?article"):::projected
v5("?count")
v3("?journal")
v4("?publisher")
c6(["bd:serviceParam"]):::iri
c2(["wd:Q55439927"]):::iri
c8(["#91;AUTO_LANGUAGE#93;,en"]):::literal
v2 --"wdt:P5008"--> c2
v2 --"wdt:P1433"--> v3
subgraph minus0["MINUS"]
style minus0 stroke-width:6px,fill:pink,stroke:red;
v3 --"wdt:P123"--> v4
end
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c6 --"wikibase:language"--> c8
end
bind2[/"count(?article)"/]
v2 --o bind2
bind2 --as--o v5