query-975413c5a30b3fb8c2fb925478633d3c

rq turtle/ttl

The number of paintings in collections without an inventory number by country SELECT ?countryLabel (COUNT(?country) AS ?count) WHERE { ?item wdt:P31 wd:Q3305213 . ?item wdt:P195 ?collection . ?collection wdt:P17 ?country MINUS { ?item wdt:P217 [] } . MINUS { ?item wdt:P195 wd:Q768717} . SERVICE wikibase:label { bd:serviceParam wikibase:language "en" } } GROUP BY ?countryLabel ORDER BY DESC(?count) LIMIT 30

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#>
# The number of paintings in collections without an inventory number by country
SELECT ?countryLabel (COUNT(?country) AS ?count) WHERE {
  ?item wdt:P31 wd:Q3305213 .
  ?item wdt:P195 ?collection .
  ?collection wdt:P17 ?country
  MINUS { ?item wdt:P217 [] } .
  MINUS { ?item wdt:P195 wd:Q768717} .
  SERVICE wikibase:label { bd:serviceParam wikibase:language "en" }
  } GROUP BY ?countryLabel
ORDER BY DESC(?count)
LIMIT 30

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v3("?collection") v5("?count") v4("?country"):::projected v2("?item") a1((" ")) c2(["wd:Q3305213"]):::iri c8(["bd:serviceParam"]):::iri c10(["en"]):::literal c6(["wd:Q768717"]):::iri v2 --"wdt:P31"--> c2 v2 --"wdt:P195"--> v3 v3 --"wdt:P17"--> v4 subgraph minus0["MINUS"] style minus0 stroke-width:6px,fill:pink,stroke:red; v2 --"wdt:P217"--> a1 end subgraph minus1["MINUS"] style minus1 stroke-width:6px,fill:pink,stroke:red; v2 --"wdt:P195"--> c6 end subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c8 --"wikibase:language"--> c10 end bind3[/"count(?country)"/] v4 --o bind3 bind3 --as--o v5